Compare commits
No commits in common. "16.0" and "14.0" have entirely different histories.
|
@ -1,6 +1,6 @@
|
|||
# Do NOT update manually; changes here will be overwritten by Copier
|
||||
_commit: v1.17.2
|
||||
_src_path: gh:oca/oca-addons-repo-template
|
||||
_src_path: git+https://github.com/OCA/oca-addons-repo-template
|
||||
ci: GitHub
|
||||
generate_requirements_txt: true
|
||||
github_check_license: true
|
||||
|
@ -11,7 +11,7 @@ github_enable_stale_action: true
|
|||
github_enforce_dev_status_compatibility: true
|
||||
include_wkhtmltopdf: false
|
||||
odoo_test_flavor: Both
|
||||
odoo_version: 16.0
|
||||
odoo_version: 14.0
|
||||
org_name: Odoo Community Association (OCA)
|
||||
org_slug: OCA
|
||||
rebel_module_groups: []
|
||||
|
|
|
@ -3,11 +3,11 @@ name: pre-commit
|
|||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "16.0*"
|
||||
- "14.0*"
|
||||
push:
|
||||
branches:
|
||||
- "16.0"
|
||||
- "16.0-ocabot-*"
|
||||
- "14.0"
|
||||
- "14.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
|
|
|
@ -3,11 +3,11 @@ name: tests
|
|||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "16.0*"
|
||||
- "14.0*"
|
||||
push:
|
||||
branches:
|
||||
- "16.0"
|
||||
- "16.0-ocabot-*"
|
||||
- "14.0"
|
||||
- "14.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
unreleased-deps:
|
||||
|
@ -35,14 +35,14 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-odoo16.0:latest
|
||||
- container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest
|
||||
name: test with Odoo
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-ocb16.0:latest
|
||||
- container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest
|
||||
name: test with OCB
|
||||
makepot: "true"
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:12.0
|
||||
image: postgres:9.6
|
||||
env:
|
||||
POSTGRES_USER: odoo
|
||||
POSTGRES_PASSWORD: odoo
|
||||
|
|
|
@ -18,7 +18,7 @@ exclude: |
|
|||
(LICENSE.*|COPYING.*)
|
||||
default_language_version:
|
||||
python: python3
|
||||
node: "16.17.0"
|
||||
node: "14.13.0"
|
||||
repos:
|
||||
- repo: local
|
||||
hooks:
|
||||
|
@ -44,7 +44,7 @@ repos:
|
|||
- id: oca-gen-addon-readme
|
||||
args:
|
||||
- --addons-dir=.
|
||||
- --branch=16.0
|
||||
- --branch=14.0
|
||||
- --org-name=OCA
|
||||
- --repo-name=reporting-engine
|
||||
- --if-source-changed
|
||||
|
@ -54,7 +54,7 @@ repos:
|
|||
- id: oca-checks-odoo-module
|
||||
- id: oca-checks-po
|
||||
- repo: https://github.com/myint/autoflake
|
||||
rev: v1.6.1
|
||||
rev: v1.4
|
||||
hooks:
|
||||
- id: autoflake
|
||||
args:
|
||||
|
@ -65,22 +65,22 @@ repos:
|
|||
- --remove-duplicate-keys
|
||||
- --remove-unused-variables
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 22.8.0
|
||||
rev: 22.3.0
|
||||
hooks:
|
||||
- id: black
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: v2.7.1
|
||||
rev: v2.1.2
|
||||
hooks:
|
||||
- id: prettier
|
||||
name: prettier (with plugin-xml)
|
||||
additional_dependencies:
|
||||
- "prettier@2.7.1"
|
||||
- "@prettier/plugin-xml@2.2.0"
|
||||
- "prettier@2.1.2"
|
||||
- "@prettier/plugin-xml@0.12.0"
|
||||
args:
|
||||
- --plugin=@prettier/plugin-xml
|
||||
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
|
||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||
rev: v8.24.0
|
||||
rev: v7.8.1
|
||||
hooks:
|
||||
- id: eslint
|
||||
verbose: true
|
||||
|
@ -88,7 +88,7 @@ repos:
|
|||
- --color
|
||||
- --fix
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.3.0
|
||||
rev: v3.2.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
# exclude autogenerated files
|
||||
|
@ -110,7 +110,7 @@ repos:
|
|||
- id: mixed-line-ending
|
||||
args: ["--fix=lf"]
|
||||
- repo: https://github.com/asottile/pyupgrade
|
||||
rev: v2.38.2
|
||||
rev: v2.7.2
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: ["--keep-percent-format"]
|
||||
|
@ -133,13 +133,13 @@ repos:
|
|||
- --header
|
||||
- "# generated from manifests external_dependencies"
|
||||
- repo: https://github.com/PyCQA/flake8
|
||||
rev: 3.9.2
|
||||
rev: 3.8.3
|
||||
hooks:
|
||||
- id: flake8
|
||||
name: flake8
|
||||
additional_dependencies: ["flake8-bugbear==21.9.2"]
|
||||
additional_dependencies: ["flake8-bugbear==20.1.4"]
|
||||
- repo: https://github.com/OCA/pylint-odoo
|
||||
rev: v8.0.19
|
||||
rev: 7.0.2
|
||||
hooks:
|
||||
- id: pylint_odoo
|
||||
name: pylint with optional checks
|
||||
|
|
45
.pylintrc
45
.pylintrc
|
@ -5,12 +5,12 @@ load-plugins=pylint_odoo
|
|||
score=n
|
||||
|
||||
[ODOOLINT]
|
||||
readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest-required-authors=Odoo Community Association (OCA)
|
||||
manifest-required-keys=license
|
||||
manifest-deprecated-keys=description,active
|
||||
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid-odoo-versions=16.0
|
||||
readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest_required_authors=Odoo Community Association (OCA)
|
||||
manifest_required_keys=license
|
||||
manifest_deprecated_keys=description,active
|
||||
license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid_odoo_versions=14.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
@ -66,39 +66,6 @@ enable=anomalous-backslash-in-string,
|
|||
use-vim-comment,
|
||||
wrong-tabs-instead-of-spaces,
|
||||
xml-syntax-error,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout,
|
||||
# messages that do not cause the lint step to fail
|
||||
consider-merging-classes-inherited,
|
||||
create-user-wo-reset-password,
|
||||
|
|
|
@ -4,12 +4,12 @@ load-plugins=pylint_odoo
|
|||
score=n
|
||||
|
||||
[ODOOLINT]
|
||||
readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest-required-authors=Odoo Community Association (OCA)
|
||||
manifest-required-keys=license
|
||||
manifest-deprecated-keys=description,active
|
||||
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid-odoo-versions=16.0
|
||||
readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest_required_authors=Odoo Community Association (OCA)
|
||||
manifest_required_keys=license
|
||||
manifest_deprecated_keys=description,active
|
||||
license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid_odoo_versions=14.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
@ -57,40 +57,7 @@ enable=anomalous-backslash-in-string,
|
|||
unreachable,
|
||||
use-vim-comment,
|
||||
wrong-tabs-instead-of-spaces,
|
||||
xml-syntax-error,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout
|
||||
xml-syntax-error
|
||||
|
||||
[REPORTS]
|
||||
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
|
||||
|
|
60
README.md
60
README.md
|
@ -1,9 +1,9 @@
|
|||
|
||||
[](https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/pre-commit.yml?query=branch%3A16.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/test.yml?query=branch%3A16.0)
|
||||
[](https://codecov.io/gh/OCA/reporting-engine)
|
||||
[](https://translation.odoo-community.org/engage/reporting-engine-16-0/?utm_source=widget)
|
||||
[](https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=14.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/pre-commit.yml?query=branch%3A14.0)
|
||||
[](https://github.com/OCA/reporting-engine/actions/workflows/test.yml?query=branch%3A14.0)
|
||||
[](https://codecov.io/gh/OCA/reporting-engine)
|
||||
[](https://translation.odoo-community.org/engage/reporting-engine-14-0/?utm_source=widget)
|
||||
|
||||
<!-- /!\ do not modify above this line -->
|
||||
|
||||
|
@ -21,32 +21,30 @@ Available addons
|
|||
----------------
|
||||
addon | version | maintainers | summary
|
||||
--- | --- | --- | ---
|
||||
[base_comment_template](base_comment_template/) | 16.0.2.2.1 | | Add conditional mako template to any reporton models that inherits comment.template.
|
||||
[bi_sql_editor](bi_sql_editor/) | 16.0.1.1.1 | [](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views
|
||||
[bi_view_editor](bi_view_editor/) | 16.0.1.1.0 | | Graphical BI views builder for Odoo
|
||||
[bi_view_editor_spreadsheet_dashboard](bi_view_editor_spreadsheet_dashboard/) | 16.0.1.0.0 | | Glue module for BI View Editor and Spreadsheet Dashboard
|
||||
[report_async](report_async/) | 16.0.1.0.0 | [](https://github.com/kittiu) | Central place to run reports live or async
|
||||
[report_company_details_translatable](report_company_details_translatable/) | 16.0.1.0.0 | | Report Company Details Translatable
|
||||
[report_context](report_context/) | 16.0.1.0.0 | | Adding context to reports
|
||||
[report_csv](report_csv/) | 16.0.2.0.0 | | Base module to create csv report
|
||||
[report_label](report_label/) | 16.0.1.0.1 | [](https://github.com/ivantodorovich) | Print configurable self-adhesive labels reports
|
||||
[report_py3o](report_py3o/) | 16.0.1.0.1 | | Reporting engine based on Libreoffice (ODT -> ODT, ODT -> PDF, ODT -> DOC, ODT -> DOCX, ODS -> ODS, etc.)
|
||||
[report_py3o_fusion_server](report_py3o_fusion_server/) | 16.0.1.0.0 | | Let the fusion server handle format conversion.
|
||||
[report_qr](report_qr/) | 16.0.1.0.0 | | Web QR Manager
|
||||
[report_qweb_decimal_place](report_qweb_decimal_place/) | 16.0.1.0.0 | | Report Qweb Decimal Place
|
||||
[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 16.0.1.0.0 | | Report Qweb Element Page Visibility
|
||||
[report_qweb_encrypt](report_qweb_encrypt/) | 16.0.1.0.2 | [](https://github.com/kittiu) | Allow to encrypt qweb pdfs
|
||||
[report_qweb_parameter](report_qweb_parameter/) | 16.0.1.0.0 | | Add new parameters for qweb templates in order to reduce field length and check minimal length
|
||||
[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 16.0.1.0.0 | | Add watermarks to your QWEB PDF reports
|
||||
[report_substitute](report_substitute/) | 16.0.1.0.1 | [](https://github.com/sbejaoui) | This module allows to create substitution rules for report actions.
|
||||
[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 16.0.1.0.0 | | Add new parameters for a paper format to be used by wkhtmltopdf command as arguments.
|
||||
[report_xlsx](report_xlsx/) | 16.0.2.0.0 | | Base module to create xlsx report
|
||||
[report_xlsx_helper](report_xlsx_helper/) | 16.0.1.0.0 | | Report xlsx helpers
|
||||
[report_xml](report_xml/) | 16.0.1.1.1 | | Allow to generate XML reports
|
||||
[sql_export](sql_export/) | 16.0.2.1.0 | [](https://github.com/legalsylvain) | Export data in csv file with SQL requests
|
||||
[sql_export_excel](sql_export_excel/) | 16.0.1.0.1 | | Allow to export a sql query to an excel file.
|
||||
[sql_export_mail](sql_export_mail/) | 16.0.2.0.1 | [](https://github.com/legalsylvain) | Send csv file generated by sql query by mail.
|
||||
[sql_request_abstract](sql_request_abstract/) | 16.0.1.0.0 | [](https://github.com/legalsylvain) | Abstract Model to manage SQL Requests
|
||||
[base_comment_template](base_comment_template/) | 14.0.4.0.2 | | Add conditional mako template to any reporton models that inherits comment.template.
|
||||
[bi_sql_editor](bi_sql_editor/) | 14.0.1.0.5 | [](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views
|
||||
[bi_view_editor](bi_view_editor/) | 14.0.1.0.0 | | Graphical BI views builder for Odoo
|
||||
[kpi_dashboard](kpi_dashboard/) | 14.0.1.2.1 | [](https://github.com/etobella) | Create Dashboards using kpis
|
||||
[kpi_dashboard_bokeh](kpi_dashboard_bokeh/) | 14.0.1.0.0 | | Create dashboards using bokeh
|
||||
[report_async](report_async/) | 14.0.1.1.1 | [](https://github.com/kittiu) | Central place to run reports live or async
|
||||
[report_context](report_context/) | 14.0.1.0.3 | | Adding context to reports
|
||||
[report_csv](report_csv/) | 14.0.1.0.0 | | Base module to create csv report
|
||||
[report_fillpdf](report_fillpdf/) | 14.0.1.0.1 | | Base module that fills PDFs
|
||||
[report_label](report_label/) | 14.0.1.0.3 | [](https://github.com/ivantodorovich) | Print configurable self-adhesive labels reports
|
||||
[report_layout_config](report_layout_config/) | 14.0.1.0.1 | | Add possibility to easily modify the global report layout
|
||||
[report_py3o](report_py3o/) | 14.0.1.0.4 | | Reporting engine based on Libreoffice (ODT -> ODT, ODT -> PDF, ODT -> DOC, ODT -> DOCX, ODS -> ODS, etc.)
|
||||
[report_py3o_fusion_server](report_py3o_fusion_server/) | 14.0.1.0.1 | | Let the fusion server handle format conversion.
|
||||
[report_qr](report_qr/) | 14.0.1.0.1 | | Web QR Manager
|
||||
[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 14.0.1.1.2 | | Report Qweb Element Page Visibility
|
||||
[report_qweb_encrypt](report_qweb_encrypt/) | 14.0.1.1.0 | [](https://github.com/kittiu) | Allow to encrypt qweb pdfs
|
||||
[report_qweb_parameter](report_qweb_parameter/) | 14.0.1.0.0 | | Add new parameters for qweb templates in order to reduce field length and check minimal length
|
||||
[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 14.0.1.0.2 | | Add watermarks to your QWEB PDF reports
|
||||
[report_qweb_signer](report_qweb_signer/) | 14.0.2.0.3 | | Sign Qweb PDFs usign a PKCS#12 certificate
|
||||
[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 14.0.1.0.0 | | Add new parameters for a paper format to be used by wkhtmltopdf command as arguments.
|
||||
[report_xlsx](report_xlsx/) | 14.0.1.0.10 | | Base module to create xlsx report
|
||||
[report_xlsx_helper](report_xlsx_helper/) | 14.0.1.0.2 | | Report xlsx helpers
|
||||
[report_xlsx_helper_demo](report_xlsx_helper_demo/) | 14.0.1.0.0 | | Report xlsx helpers - demo
|
||||
[report_xml](report_xml/) | 14.0.1.0.3 | | Allow to generate XML reports
|
||||
|
||||
[//]: # (end addons)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Base Comments Templates
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:00fc443044a8adc3983e4fd2f2627928cc6fe8001f4115c1a66d70b455ba14ee
|
||||
!! source digest: sha256:b5585908865a1c376a628641d6c4dbb9db7eda53997022212489f801fb5eefa2
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
|
@ -17,13 +17,13 @@ Base Comments Templates
|
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template
|
||||
: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-16-0/reporting-engine-16-0-base_comment_template
|
||||
: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/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=14.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
@ -86,7 +86,7 @@ Usage
|
|||
You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
|
||||
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.
|
||||
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like {{object}}, {{user}}, {{ctx}} to add dynamic content.
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content.
|
||||
|
||||
Change the report related to the model from configuration and add a statement like:
|
||||
|
||||
|
@ -106,7 +106,7 @@ You should always use t-if since the method returns False if no template is foun
|
|||
If you want to use Qweb templates, or different context, you can specify it just like in
|
||||
mail.render.mixin with parameters:
|
||||
|
||||
- engine: "inline_template", "qweb" or "qweb_view",
|
||||
- engine: "jinja" or "qweb",
|
||||
- add_context: dict with your own context,
|
||||
- post_process: perform a post processing on rendered result
|
||||
|
||||
|
@ -123,7 +123,7 @@ Bug Tracker
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
|
@ -161,14 +161,6 @@ Contributors
|
|||
* Carlos Roca
|
||||
* Víctor Martínez
|
||||
|
||||
* `Jarsa <https://www.jarsa.com>`_:
|
||||
|
||||
* Alan Ramos <alan.ramos@jarsa.com>
|
||||
|
||||
* `Bloopark systems <https://www.bloopark.de/>`_:
|
||||
|
||||
* Achraf Mhadhbi <machraf@bloopark.de>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
|
@ -182,6 +174,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template>`_ project on GitHub.
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/14.0/base_comment_template>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
from . import models, wizard
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"name": "Base Comments Templates",
|
||||
"summary": "Add conditional mako template to any report"
|
||||
"on models that inherits comment.template.",
|
||||
"version": "16.0.2.2.1",
|
||||
"version": "14.0.4.0.2",
|
||||
"category": "Reporting",
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"author": "Camptocamp, Odoo Community Association (OCA)",
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "أنشئ بواسطة"
|
|||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -17,7 +17,7 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -124,6 +124,11 @@ msgstr ""
|
|||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -132,12 +137,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -145,9 +158,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -172,18 +195,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -206,7 +232,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -227,11 +252,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -248,36 +292,25 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -286,6 +319,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -326,12 +369,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -347,6 +384,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Създадено от"
|
|||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Kreirao"
|
|||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creat per"
|
|||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera modificació el"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Vytvořil(a)"
|
|||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Oprettet af"
|
|||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -10,7 +10,7 @@ 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: 2022-11-04 14:45+0000\n"
|
||||
"PO-Revision-Date: 2020-03-23 17:13+0000\n"
|
||||
"Last-Translator: Maria Sparenberg <maria.sparenberg@gmx.net>\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
|
@ -18,14 +18,14 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -36,42 +36,42 @@ msgstr "Aktiv"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Textbaustein-Vorschau"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Textbaustein-Vorlagen"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Textbaustein-Vorlagen-Vorschau"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Textbaustein-Inhalt"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Inhalt"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Suffix"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Sprache wählen:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
|
@ -81,7 +81,7 @@ msgstr ""
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Beispiel wählen"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
|
@ -92,7 +92,7 @@ msgstr "Textbaustein"
|
|||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Textbaustein-Vorlage"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
|
@ -103,12 +103,12 @@ msgstr "Textbaustein-Vorlage"
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Textbaustein-Vorlagen"
|
||||
msgstr "Textbausteinvorlagen"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Textbaustein-Vorlage"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
|
@ -132,30 +132,53 @@ msgstr "Erstellt von"
|
|||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filter-Domäne"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -163,37 +186,36 @@ msgstr "ID"
|
|||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "IR Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für das "
|
||||
"ausgewählte Unternehmen verfügbar."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für die "
|
||||
"ausgewählten Partner verfügbar."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
|
@ -212,13 +234,12 @@ msgstr "Zuletzt aktualisiert am"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
|
@ -230,17 +251,36 @@ msgstr "Bezeichnung"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Dies ist die Bezeichnung/Beschreibung der Textbaustein-Vorlage."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Kein Eintrag"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
|
@ -250,44 +290,34 @@ msgstr "Position im Dokument"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Vorschau von"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Objekt-Referenz"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenz"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -296,15 +326,25 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Vorlage"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Vorlagen-Vorschau"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
|
@ -314,12 +354,12 @@ msgstr ""
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Sprache für Vorlage-Vorschau"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Je kleiner die Nummer, desto höher die Priorität."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
|
@ -328,8 +368,6 @@ msgid ""
|
|||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Die Textbaustein-Vorlage wird für diese Datenmodelle verfügbar sein. Es "
|
||||
"werden nur erlaubte Datenmodell angezeigt."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
|
@ -337,21 +375,11 @@ msgid ""
|
|||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Die Textbaustein-Vorlage wird nur für die Objekte verfügbar sein, die dieser "
|
||||
"Bedingung genügen."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Dieses Feld entscheidet, wo im gedruckten Dokument der Textbaustein "
|
||||
"angezeigt wird."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
|
@ -361,7 +389,21 @@ msgstr ""
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Präfix"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
|
@ -379,3 +421,26 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Suffix"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Textbausteinvorlage"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Präfix"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Textbaustein-Zusammenfassung"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Textbausteinvorlage"
|
||||
|
||||
#~ msgid "If set, it'll only be available for this company"
|
||||
#~ msgstr ""
|
||||
#~ "Wenn der Haken gesetzt ist, ist die Vorlage nur das gesetzte Unternehmen "
|
||||
#~ "verfügbar."
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Δημιουργήθηκε από "
|
|||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Created by"
|
|||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-11-03 08:01+0000\n"
|
||||
"PO-Revision-Date: 2023-09-07 16:37+0000\n"
|
||||
"POT-Creation-Date: 2021-02-09 09:55+0000\n"
|
||||
"PO-Revision-Date: 2024-03-31 01:56+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
|
@ -24,11 +24,11 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Sin registros\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
|
@ -43,22 +43,22 @@ msgstr "Archivado"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Vista previa de los comentarios sobre la base"
|
||||
msgstr "Vista Previa del Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Plantilla de comentarios base"
|
||||
msgstr "Plantilla de Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Vista previa de la plantilla de comentarios base"
|
||||
msgstr "Vista Previa de la Plantilla de Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenido del comentario de base"
|
||||
msgstr "Contenido del Comentario Base"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
|
@ -134,6 +134,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr "Valor Predeterminado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -142,22 +147,42 @@ msgstr "Descartar"
|
|||
#. 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Motor"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr "Generador Dinámico de Marcador de Posición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr "Campo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filtro de dominio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
msgstr ""
|
||||
"Expresión final del marcador de posición, que se copiará y pegará en el "
|
||||
"campo de plantilla deseado."
|
||||
|
||||
#. 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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -184,18 +209,21 @@ msgstr ""
|
|||
"contactos seleccionados."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Plantilla en línea"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr "Jinja"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Plantilla en línea"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. 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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
|
@ -218,7 +246,6 @@ msgstr "Modelo"
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
|
@ -237,13 +264,36 @@ msgstr "Nombre de la plantilla de comentario"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Sin registro"
|
||||
msgstr "No Registrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
"Idioma de traducción opcional (código ISO) para seleccionar al enviar un "
|
||||
"correo electrónico. Si no se establece, se utilizará la versión en inglés. "
|
||||
"Normalmente debe ser una expresión de marcador de posición que proporcione "
|
||||
"el idioma adecuado, por ejemplo ${object.partner_id.lang}."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr "Valor opcional que se utilizará si el campo de destino está vacío"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr "Expresión de marcador de posición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,7 +302,7 @@ msgstr "Posición en el documento"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Previsualizar"
|
||||
msgstr "Previsualización"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
|
@ -260,44 +310,47 @@ msgid "Preview of"
|
|||
msgstr "Previsualización de"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista de la QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista de la QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Referencia del registro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
"Seleccione el campo destino en el modelo de documento relacionado.\n"
|
||||
"Si se trata de un campo de relación, podrá seleccionar un campo de destino "
|
||||
"en el destino de la relación."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Algún modelo (%s) no se ha encontrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr "Comentarios de contactos que se pueden incluir en informes"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr "Sub-campo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr "Sub-modelo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -342,14 +395,6 @@ msgstr ""
|
|||
"Esta plantilla de comentarios estará disponible solo para objetos que "
|
||||
"satisfagan la condición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Este campo permite seleccionar el motor a utilizar para renderizar la "
|
||||
"plantilla."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -366,6 +411,25 @@ msgstr "Esta es la plantilla de texto que se insertará en los informes."
|
|||
msgid "Top"
|
||||
msgstr "Superior"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
"Cuando se selecciona un campo de relación como primer campo, este campo "
|
||||
"permite seleccionar el campo de destino dentro del modelo de documento de "
|
||||
"destino (sub-modelo)."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
"Cuando se selecciona un campo de relación como primer campo, este campo "
|
||||
"muestra el modelo de documento al que se dirige la relación."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -385,3 +449,32 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "registro:"
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Después de las líneas"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Antes de las líneas"
|
||||
|
||||
#~ msgid "Priority"
|
||||
#~ msgstr "Prioridad"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There are other records with same models, priority, domain and position."
|
||||
#~ msgstr ""
|
||||
#~ "Hay otros registros con los mismos datos en modelo, prioridad, dominio y "
|
||||
#~ "posición."
|
||||
|
||||
#~ msgid "the highest priority = the smallest number"
|
||||
#~ msgstr "Mayor prioridad = número menor"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Índice de comentarios"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Comment Templates"
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Plantillas de comentarios"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posició"
|
||||
|
|
|
@ -9,93 +9,89 @@ 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: 2023-09-04 04:36+0000\n"
|
||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
||||
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Sin registros\n"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Vista previa del Comentario Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Plantilla de Comentario Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Vista Previa de Plantilla de Comentario Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenido de comentario Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Cuerpo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
msgid "Bottom"
|
||||
msgstr "Debajo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Elija un idioma:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr "Elija un motor:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Elija un ejemplo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Comment"
|
||||
msgstr "Comentario"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Comment Template"
|
||||
msgstr "Plantilla de Comentario"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
|
||||
|
@ -106,22 +102,22 @@ msgstr "Plantilla de Comentario"
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Comment Templates"
|
||||
msgstr "Plantillas de Comentario"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template
|
||||
msgid "Comments Template"
|
||||
msgstr "Plantilla de Comentarios"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
|
||||
|
@ -135,30 +131,53 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Motor"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Dominio de Filtro"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -166,37 +185,36 @@ msgstr "ID"
|
|||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
|
||||
msgid "IR Model"
|
||||
msgstr "Modelo IR"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected company."
|
||||
msgstr ""
|
||||
"Si está configurado, la plantilla de comentario estará disponible solo para "
|
||||
"la compañía seleccionada."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid ""
|
||||
"If set, the comment template will be available only for the selected partner."
|
||||
msgstr ""
|
||||
"Si está configurado, la plantilla de comentario estará disponisble solo para "
|
||||
"el contacto seleccionado."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Plantilla en Línea"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Plantilla en línea"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
|
@ -215,115 +233,132 @@ msgstr "Última actualización el"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
|
||||
msgid "Name/description of this comment template"
|
||||
msgstr "Nombre/descripción de esta plantilla de comentario"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Sin Registro"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Contacto"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
msgstr "Posición en el documento"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Vista Previa"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Vista Previa de"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Referencia de registro"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Algunos modelo (%s) no se han encontrado"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
"Comentarios específicos de contactos que se pueden incluir en los informes"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Vista Previa de Plantilla"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr "Motor de Vista Orevia de Plantillas"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Idioma de Vista Previa de Plantilla"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "The smaller number = The higher priority"
|
||||
msgstr "Número más chico = Prioridad más alta"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
|
||||
|
@ -332,9 +367,6 @@ msgid ""
|
|||
"This comment template will be available on this models. You can see here "
|
||||
"only models allowed to set the coment template."
|
||||
msgstr ""
|
||||
"Esta plantilla de comentario estará disponible en estos modelos. Puede ver "
|
||||
"aquí solo los modelos autorizados para configurar la plantilla de "
|
||||
"comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
|
||||
|
@ -342,39 +374,40 @@ msgid ""
|
|||
"This comment template will be available only for objects that satisfy the "
|
||||
"condition"
|
||||
msgstr ""
|
||||
"Esta plantilla de comentario estará disponible solo para objectos que "
|
||||
"cumplan la condición"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Este campo permite seleccionar el motor que usar para renderizar la "
|
||||
"plantilla."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
msgstr ""
|
||||
"Este campo permite selección la posición de los comentarios en los reportes."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text
|
||||
msgid "This is the text template that will be inserted into reports."
|
||||
msgstr "Esta es la plantilla que será insertada en los reportes."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
|
||||
msgid "Top"
|
||||
msgstr "Arriba"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
msgstr ""
|
||||
"Si este modelo es compatible con los informes para agregar plantillas de "
|
||||
"comentarios."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_comment_template
|
||||
|
@ -382,10 +415,8 @@ msgid ""
|
|||
"base.comment.template to put header and footer in reports based on created "
|
||||
"comment templates"
|
||||
msgstr ""
|
||||
"base.comment.template para poner encabezado y pie de página en informes "
|
||||
"basados en plantillas de comentarios creadas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "registro:"
|
||||
msgstr ""
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Loonud"
|
|||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Nork sortua"
|
|||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "ایجاد شده توسط"
|
|||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Luonut"
|
|||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Créé par"
|
|||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière mise-à-jour le"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -367,3 +419,22 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Après les lignes"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Modèle de textes de commentaires"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Avant les lignes"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Nom"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Modèles de commentaires"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Créé par"
|
|||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Créé par"
|
|||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creado por"
|
|||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome mostrado"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -368,3 +420,22 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Despois das liñas"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Modelo do comentario base"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Antes das liñas"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Índice de comentarios"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Modelos de comentarios"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posición"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr ""
|
|||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "נוצר על ידי"
|
|||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -26,7 +26,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -133,6 +133,11 @@ msgstr "Stvorio/la"
|
|||
msgid "Created on"
|
||||
msgstr "Stvoreno dana"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -141,12 +146,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -154,9 +167,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -179,18 +202,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
|
@ -213,7 +239,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -234,11 +259,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -255,36 +299,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -293,6 +327,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -333,12 +377,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -354,6 +392,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -370,3 +422,21 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Iza linija"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Osnovni Predložak komentara"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Ispred linija"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Sažetak komentara"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Predložak uvjeta"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Pozicija"
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Kreirao"
|
|||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Készítette"
|
|||
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__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Dibuat oleh"
|
|||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -10,7 +10,7 @@ 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: 2024-01-18 09:34+0000\n"
|
||||
"PO-Revision-Date: 2023-12-28 17:34+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
|
@ -25,11 +25,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">Nessun record\n"
|
||||
" </span>"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
|
||||
|
@ -44,27 +41,27 @@ msgstr "In archivio"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment Preview"
|
||||
msgstr "Anteprima commento base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id
|
||||
msgid "Base Comment Template"
|
||||
msgstr "Modello commento base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
|
||||
msgid "Base Comment Template Preview"
|
||||
msgstr "Anteprima modello commento base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Base Comment content"
|
||||
msgstr "Contenuto commento base"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
|
||||
msgid "Body"
|
||||
msgstr "Corpo"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
|
||||
|
@ -74,17 +71,17 @@ msgstr "In basso"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose a language:"
|
||||
msgstr "Scegliere una lingua:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an engine:"
|
||||
msgstr "Scegliere un rogramma:"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Choose an example"
|
||||
msgstr "Scegliere un esempio"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
|
@ -135,30 +132,53 @@ msgstr "Creato da"
|
|||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
msgstr "Abbandona"
|
||||
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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
msgstr "Programma"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
|
||||
msgid "Filter Domain"
|
||||
msgstr "Filtra dominio"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -185,18 +205,21 @@ msgstr ""
|
|||
"selezionato."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
msgstr "Modello in linea"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
msgstr "Modello in linea"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
|
@ -215,11 +238,10 @@ msgstr "Ultimo aggiornamento il"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
|
||||
msgid "Model"
|
||||
msgstr "Modello"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
|
||||
|
@ -238,13 +260,32 @@ msgstr "Nome/descrizione di questo modello commento"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
|
||||
msgid "No Record"
|
||||
msgstr "Nessun record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,46 +294,36 @@ msgstr "Posizione nel documento"
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Preview of"
|
||||
msgstr "Anteprima di"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr "Vista Qweb"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr "Vista Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr "Riferimento record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr "Qualche modello (%s) non trovato"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
|
@ -300,6 +331,16 @@ msgid "Specific partner comments that can be included in reports"
|
|||
msgstr ""
|
||||
"Commenti specifici per contatto che possono essere inclusi nelle stampe"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -308,17 +349,17 @@ msgstr "Modello"
|
|||
#. module: base_comment_template
|
||||
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
|
||||
msgid "Template Preview"
|
||||
msgstr "Anteprima modello"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine
|
||||
msgid "Template Preview Engine"
|
||||
msgstr "Programma anteprima modello"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
|
||||
msgid "Template Preview Language"
|
||||
msgstr "Lingua anteprima modello"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
|
||||
|
@ -344,14 +385,6 @@ msgstr ""
|
|||
"Questo modello commento sarà disponibile solo per i record che soddisfano la "
|
||||
"condizione"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
"Questo file consente di selezionare il programma da utilizzare per "
|
||||
"visualizzare il modello."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -368,6 +401,20 @@ msgstr "Questo è il prossimo modello che sarà inserito nelle stampe."
|
|||
msgid "Top"
|
||||
msgstr "In alto"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -387,4 +434,7 @@ msgstr ""
|
|||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posizione"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "作成者"
|
|||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -368,3 +420,22 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "明細行後"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Base comment template"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "明細行前"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "コメントサマリ"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "コメントテンプレート"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "位置"
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "작성자"
|
|||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Sukūrė"
|
|||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Sukūrė"
|
|||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Izveidoja"
|
|||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Креирано од"
|
|||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Үүсгэгч"
|
|||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Opprettet av"
|
|||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Laget av"
|
|||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Aangemaakt door"
|
|||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Gemaakt door"
|
|||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Aangemaakt door"
|
|||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Utworzone przez"
|
|||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Criado por"
|
|||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr "Domínio Filtro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -181,18 +204,21 @@ msgstr ""
|
|||
"selecionado."
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado a última vez por"
|
||||
|
||||
|
@ -215,7 +241,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
|
||||
|
@ -236,11 +261,30 @@ msgstr "Nome/descrição deste modelo de comentário"
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr "Parceiro"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -257,38 +301,28 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
|
||||
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
|
||||
|
@ -296,6 +330,16 @@ msgid "Specific partner comments that can be included in reports"
|
|||
msgstr ""
|
||||
"Comentários específicos de parceiros que podem ser incluídos em relatórios"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -340,12 +384,6 @@ msgstr ""
|
|||
"Este modelo de comentário estará disponível apenas para objetos que "
|
||||
"satisfaçam a condição"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -361,6 +399,20 @@ msgstr "Este é o modelo de texto que será inserido nos relatórios."
|
|||
msgid "Top"
|
||||
msgstr "Topo"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -381,3 +433,24 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Após as linhas"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Modelo de Comentários Base"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Antes das Linhas"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Resumo de comentário"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Modelos de condições"
|
||||
|
||||
#~ msgid "If set, it'll only be available for this company"
|
||||
#~ msgstr "Se assinalado, só estará disponível para esta empresa"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posição"
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Criado por"
|
|||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -369,3 +421,24 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Depois das linhas"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Modelo de comentário Base"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Antes das linhas"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Índice de comentários"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Modelos de condições"
|
||||
|
||||
#~ msgid "If set, it'll only be available for this company"
|
||||
#~ msgstr "Se definido, ele estará disponível apenas para esta empresa"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posição"
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Criado por"
|
|||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Em"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -369,3 +421,24 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Após as linhas"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Modelo de comentários base"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Antes das linhas"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Resumo de comentários"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Modelo de condições"
|
||||
|
||||
#~ msgid "If set, it'll only be available for this company"
|
||||
#~ msgstr "Se assinalado, será apenas visível para esta empresa"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Posição"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Creat de"
|
|||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Создано"
|
|||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Vytvoril"
|
|||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -368,3 +420,24 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Za položkami"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Základná šablóna komentárov"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Pred položkami"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Názov"
|
||||
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Predvolená šablóna"
|
||||
|
||||
#~ msgid "If set, it'll only be available for this company"
|
||||
#~ msgstr "Ak je nastavená, bude k dispozícii iba pre túto spoločnosť"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Pozícia"
|
||||
|
|
|
@ -10,7 +10,7 @@ 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: 2023-04-11 13:24+0000\n"
|
||||
"PO-Revision-Date: 2023-04-11 13:23+0000\n"
|
||||
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
|
@ -26,7 +26,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -133,6 +133,11 @@ msgstr "Ustvaril"
|
|||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -141,12 +146,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -154,9 +167,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -179,18 +202,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
|
@ -213,7 +239,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -234,11 +259,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -255,36 +299,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -293,6 +327,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -333,12 +377,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -354,6 +392,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
@ -370,3 +422,22 @@ msgstr ""
|
|||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "record:"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "After lines"
|
||||
#~ msgstr "Po postavkah"
|
||||
|
||||
#~ msgid "Base comment template"
|
||||
#~ msgstr "Osnovna predloga za komentarje"
|
||||
|
||||
#~ msgid "Before lines"
|
||||
#~ msgstr "Pred postavkami"
|
||||
|
||||
#~ msgid "Comment summary"
|
||||
#~ msgstr "Povzetek komentarjev"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Conditions template"
|
||||
#~ msgstr "Predloge komentarjev"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Položaj"
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr ""
|
|||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -132,6 +132,11 @@ msgstr "Kreirao"
|
|||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -140,12 +145,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -153,9 +166,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -178,18 +201,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
|
@ -212,7 +238,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -233,11 +258,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -254,36 +298,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -292,6 +326,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -332,12 +376,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -353,6 +391,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Skapad av"
|
|||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "สร้างโดย"
|
|||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Oluşturan"
|
|||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Oluşturan"
|
|||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Створив"
|
|||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -130,6 +130,11 @@ msgstr "Được tạo bởi"
|
|||
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__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -138,12 +143,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -151,9 +164,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -176,18 +199,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
|
@ -210,7 +236,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -231,11 +256,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -252,36 +296,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -290,6 +324,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -330,12 +374,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -351,6 +389,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "Tạo bởi"
|
|||
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__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "创建者"
|
|||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
|
||||
"False)]}\">No records\n"
|
||||
" </span>"
|
||||
" </span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -131,6 +131,11 @@ msgstr "建立者"
|
|||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Default Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
|
||||
msgid "Discard"
|
||||
|
@ -139,12 +144,20 @@ 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_base_comment_template_preview__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine
|
||||
msgid "Engine"
|
||||
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
|
||||
msgid "Dynamic Placeholder Generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -152,9 +165,19 @@ msgstr ""
|
|||
msgid "Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid ""
|
||||
"Final placeholder expression, to be copy-pasted in the desired template "
|
||||
"field."
|
||||
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_base_comment_template_preview__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
|
@ -177,18 +200,21 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template
|
||||
msgid "Inline Template"
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
|
||||
msgid "Jinja"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template
|
||||
msgid "Inline template"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__lang
|
||||
msgid "Language"
|
||||
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_base_comment_template_preview____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
|
@ -211,7 +237,6 @@ msgstr ""
|
|||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model,name:base_comment_template.model_ir_model
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models
|
||||
msgid "Models"
|
||||
msgstr ""
|
||||
|
||||
|
@ -232,11 +257,30 @@ msgstr ""
|
|||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__lang
|
||||
msgid ""
|
||||
"Optional translation language (ISO code) to select when sending out an "
|
||||
"email. If not set, the english version will be used. This should usually be "
|
||||
"a placeholder expression that provides the appropriate language, e.g. "
|
||||
"${object.partner_id.lang}."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__null_value
|
||||
msgid "Optional value to use if the target field is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__copyvalue
|
||||
msgid "Placeholder Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
|
||||
msgid "Position on document"
|
||||
|
@ -253,36 +297,26 @@ msgid "Preview of"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view
|
||||
msgid "QWeb View"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view
|
||||
msgid "QWeb view"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref
|
||||
msgid "Record reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_object_field
|
||||
msgid ""
|
||||
"Select target field from the related document model.\n"
|
||||
"If it is a relationship field you will be able to select a target field at "
|
||||
"the destination of the relationship."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#. odoo-python
|
||||
#: code:addons/base_comment_template/models/base_comment_template.py:0
|
||||
#, python-format
|
||||
msgid "Some model (%s) not found"
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
|
@ -291,6 +325,16 @@ msgstr ""
|
|||
msgid "Specific partner comments that can be included in reports"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid "Sub-field"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid "Sub-model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
|
||||
msgid "Template"
|
||||
|
@ -331,12 +375,6 @@ msgid ""
|
|||
"condition"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine
|
||||
msgid ""
|
||||
"This field allows to select the engine to use for rendering the template."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
|
||||
msgid "This field allows to select the position of the comment on reports."
|
||||
|
@ -352,6 +390,20 @@ msgstr ""
|
|||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_model_object_field
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field lets you "
|
||||
"select the target field within the destination document model (sub-model)."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sub_object
|
||||
msgid ""
|
||||
"When a relationship field is selected as first field, this field shows the "
|
||||
"document model the relationship goes to."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_comment_template
|
||||
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template
|
||||
msgid "Whether this model supports in reports to add comment templates."
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# Copyright 2021 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
from odoo.tools import parse_version
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
if parse_version(version) == parse_version("14.0.1.0.0"):
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
INSERT INTO base_comment_template_res_partner_rel
|
||||
(res_partner_id, base_comment_template_id)
|
||||
SELECT SPLIT_PART(ip.res_id, ',', 2)::int AS res_partner_id,
|
||||
SPLIT_PART(ip.value_reference, ',', 2)::int AS base_comment_template_id
|
||||
FROM ir_property ip
|
||||
JOIN ir_model_fields imf ON ip.fields_id = imf.id
|
||||
JOIN res_partner rp ON rp.id = SPLIT_PART(ip.res_id, ',', 2)::int
|
||||
JOIN base_comment_template bct
|
||||
ON bct.id = SPLIT_PART(ip.value_reference, ',', 2)::int
|
||||
WHERE imf.name = 'property_comment_template_id'
|
||||
AND imf.model = 'res.partner'
|
||||
AND ip.res_id IS NOT NULL
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
)
|
|
@ -0,0 +1,30 @@
|
|||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# Copyright 2021 Tecnativa - Pedro M: Baeza
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
from odoo.tools import parse_version
|
||||
|
||||
field_renames = [
|
||||
("base.comment.template", "base_comment_template", "priority", "sequence"),
|
||||
]
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
if parse_version(version) == parse_version("14.0.1.0.0"):
|
||||
openupgrade.rename_fields(env, field_renames)
|
||||
if openupgrade.table_exists(env.cr, "base_comment_template_res_partner_rel"):
|
||||
# Swap column names, as they were incorrect
|
||||
env.cr.execute(
|
||||
"ALTER TABLE base_comment_template_res_partner_rel "
|
||||
"RENAME base_comment_template_id TO temp"
|
||||
)
|
||||
env.cr.execute(
|
||||
"ALTER TABLE base_comment_template_res_partner_rel "
|
||||
"RENAME res_partner_id TO base_comment_template_id"
|
||||
)
|
||||
env.cr.execute(
|
||||
"ALTER TABLE base_comment_template_res_partner_rel "
|
||||
"RENAME temp TO res_partner_id"
|
||||
)
|
|
@ -1,17 +0,0 @@
|
|||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
import re
|
||||
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
"""In v15 mail engine is inline_template, we try to replace the following:
|
||||
- ${object} > {{object}}
|
||||
- ${user} > {{user}}
|
||||
- ${ctx} > {{ctx}}
|
||||
"""
|
||||
for item in env["base.comment.template"].search([("text", "ilike", "${")]):
|
||||
item.text = re.sub(r"\${(.+)}", r"{{\1}}", item.text)
|
|
@ -1,27 +0,0 @@
|
|||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
from odoo.tools.sql import column_exists
|
||||
|
||||
|
||||
@openupgrade.migrate()
|
||||
def migrate(env, version):
|
||||
if not column_exists(env.cr, "base_comment_template", "models"):
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"ALTER TABLE base_comment_template ADD COLUMN IF NOT EXISTS models text",
|
||||
)
|
||||
openupgrade.logged_query(
|
||||
env.cr,
|
||||
"""
|
||||
UPDATE base_comment_template template
|
||||
SET models = (
|
||||
SELECT string_agg(model.model, ',')
|
||||
FROM base_comment_template_ir_model_rel AS rel
|
||||
JOIN ir_model AS model ON rel.ir_model_id = model.id
|
||||
WHERE rel.base_comment_template_id = template.id
|
||||
)
|
||||
""",
|
||||
)
|
|
@ -1,4 +1 @@
|
|||
from . import base_comment_template
|
||||
from . import comment_template
|
||||
from . import ir_model
|
||||
from . import res_partner
|
||||
from . import base_comment_template, comment_template, ir_model, res_partner
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
|
||||
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021-2022 Tecnativa - Víctor Martínez
|
||||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class BaseCommentTemplate(models.Model):
|
||||
"""Comment templates printed on reports"""
|
||||
|
||||
_name = "base.comment.template"
|
||||
_inherit = "mail.render.mixin"
|
||||
_description = "Comments Template"
|
||||
_order = "sequence,id"
|
||||
|
||||
|
@ -23,6 +23,7 @@ class BaseCommentTemplate(models.Model):
|
|||
help="This field allows to select the position of the comment on reports.",
|
||||
)
|
||||
name = fields.Char(
|
||||
string="Name",
|
||||
translate=True,
|
||||
required=True,
|
||||
help="Name/description of this comment template",
|
||||
|
@ -52,15 +53,17 @@ class BaseCommentTemplate(models.Model):
|
|||
help="If set, the comment template will be available only for the selected "
|
||||
"partner.",
|
||||
)
|
||||
models = fields.Text(required=True)
|
||||
model_ids = fields.Many2many(
|
||||
comodel_name="ir.model",
|
||||
compute="_compute_model_ids",
|
||||
compute_sudo=True,
|
||||
string="IR Model",
|
||||
ondelete="cascade",
|
||||
domain=[
|
||||
("is_comment_template", "=", True),
|
||||
("model", "!=", "comment.template"),
|
||||
],
|
||||
required=True,
|
||||
help="This comment template will be available on this models. "
|
||||
"You can see here only models allowed to set the coment template.",
|
||||
search="_search_model_ids",
|
||||
)
|
||||
domain = fields.Char(
|
||||
string="Filter Domain",
|
||||
|
@ -72,47 +75,6 @@ class BaseCommentTemplate(models.Model):
|
|||
sequence = fields.Integer(
|
||||
required=True, default=10, help="The smaller number = The higher priority"
|
||||
)
|
||||
engine = fields.Selection(
|
||||
selection=[
|
||||
("inline_template", "Inline Template"),
|
||||
("qweb", "QWeb"),
|
||||
("qweb_view", "QWeb View"),
|
||||
],
|
||||
required=True,
|
||||
default="inline_template",
|
||||
help="This field allows to select the engine to use for rendering the template.",
|
||||
)
|
||||
|
||||
def _get_ir_model_items(self, models):
|
||||
return (
|
||||
self.env["ir.model"]
|
||||
.sudo()
|
||||
.search(
|
||||
[
|
||||
("is_comment_template", "=", True),
|
||||
("model", "!=", "comment.template"),
|
||||
("model", "in", models),
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
@api.depends("models")
|
||||
def _compute_model_ids(self):
|
||||
im_model = self.env["ir.model"]
|
||||
for item in self:
|
||||
models = im_model.browse()
|
||||
if item.models:
|
||||
models = self._get_ir_model_items(item.models.split(","))
|
||||
item.model_ids = [(6, 0, models.ids)]
|
||||
|
||||
@api.constrains("models")
|
||||
def check_models(self):
|
||||
"""Avoid non-existing or not allowed models (is_comment_template=True)"""
|
||||
for item in self.filtered("models"):
|
||||
models = item.models.split(",")
|
||||
res = self._get_ir_model_items(item.models.split(","))
|
||||
if not res or len(res) != len(models):
|
||||
raise ValidationError(_("Some model (%s) not found") % item.models)
|
||||
|
||||
def name_get(self):
|
||||
"""Redefine the name_get method to show the template name with the position."""
|
||||
|
@ -125,12 +87,3 @@ class BaseCommentTemplate(models.Model):
|
|||
name += " (%s)" % ", ".join(item.model_ids.mapped("name"))
|
||||
res.append((item.id, name))
|
||||
return res
|
||||
|
||||
def _search_model_ids(self, operator, value):
|
||||
# We cannot use model_ids.model in search() method to avoid access errors
|
||||
allowed_items = (
|
||||
self.sudo()
|
||||
.search([])
|
||||
.filtered(lambda x: value in x.model_ids.mapped("model"))
|
||||
)
|
||||
return [("id", "in", allowed_items.ids)]
|
||||
|
|
|
@ -1,12 +1,10 @@
|
|||
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
|
||||
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021-2022 Tecnativa - Víctor Martínez
|
||||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# Copyright 2023 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
import markupsafe
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.osv import expression
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
|
||||
|
@ -23,44 +21,47 @@ class CommentTemplate(models.AbstractModel):
|
|||
|
||||
comment_template_ids = fields.Many2many(
|
||||
compute="_compute_comment_template_ids",
|
||||
compute_sudo=True,
|
||||
comodel_name="base.comment.template",
|
||||
string="Comment Template",
|
||||
domain=lambda self: [("model_ids", "in", self._name)],
|
||||
domain=lambda self: [("model_ids.model", "=", self._name)],
|
||||
store=True,
|
||||
readonly=False,
|
||||
)
|
||||
|
||||
@api.depends(_comment_template_partner_field_name)
|
||||
def _compute_comment_template_ids(self):
|
||||
template_model = self.env["base.comment.template"]
|
||||
template_domain = template_model._search_model_ids("in", self._name)
|
||||
for record in self:
|
||||
partner = record[self._comment_template_partner_field_name]
|
||||
record.comment_template_ids = [(5,)]
|
||||
templates = template_model.search(
|
||||
expression.AND(
|
||||
[
|
||||
[("id", "in", partner.base_comment_template_ids.ids)],
|
||||
template_domain,
|
||||
]
|
||||
)
|
||||
)
|
||||
domain = [
|
||||
"|",
|
||||
("partner_ids", "=", False),
|
||||
("partner_ids", "=", partner.id),
|
||||
("model_ids.model", "=", self._name),
|
||||
]
|
||||
if "company_id" in self._fields:
|
||||
domain += [
|
||||
"|",
|
||||
("company_id", "=", False),
|
||||
("company_id", "=", record.company_id.id),
|
||||
]
|
||||
templates = self.env["base.comment.template"].search(domain)
|
||||
for template in templates:
|
||||
domain = safe_eval(template.domain)
|
||||
if not domain or record.filtered_domain(domain):
|
||||
record.comment_template_ids = [(4, template.id)]
|
||||
if not templates:
|
||||
record.comment_template_ids = False
|
||||
|
||||
def render_comment(
|
||||
self, comment, engine=False, add_context=None, post_process=False
|
||||
self, comment, engine="jinja", add_context=None, post_process=False
|
||||
):
|
||||
self.ensure_one()
|
||||
comment_texts = self.env["mail.render.mixin"]._render_template(
|
||||
template_src=comment.text,
|
||||
model=self._name,
|
||||
res_ids=[self.id],
|
||||
engine=engine or comment.engine,
|
||||
comment.text,
|
||||
self._name,
|
||||
[self.id],
|
||||
engine=engine,
|
||||
add_context=add_context,
|
||||
post_process=post_process,
|
||||
)
|
||||
return markupsafe.Markup(comment_texts[self.id]) or ""
|
||||
return comment_texts[self.id] or ""
|
||||
|
|
|
@ -14,7 +14,7 @@ class IrModel(models.Model):
|
|||
)
|
||||
|
||||
def _reflect_model_params(self, model):
|
||||
vals = super()._reflect_model_params(model)
|
||||
vals = super(IrModel, self)._reflect_model_params(model)
|
||||
vals["is_comment_template"] = issubclass(
|
||||
type(model), self.pool["comment.template"]
|
||||
)
|
||||
|
@ -22,7 +22,7 @@ class IrModel(models.Model):
|
|||
|
||||
@api.model
|
||||
def _instanciate(self, model_data):
|
||||
model_class = super()._instanciate(model_data)
|
||||
model_class = super(IrModel, self)._instanciate(model_data)
|
||||
if (
|
||||
model_data.get("is_comment_template")
|
||||
and model_class._name != "comment.template"
|
||||
|
|
|
@ -20,11 +20,3 @@
|
|||
|
||||
* Carlos Roca
|
||||
* Víctor Martínez
|
||||
|
||||
* `Jarsa <https://www.jarsa.com>`_:
|
||||
|
||||
* Alan Ramos <alan.ramos@jarsa.com>
|
||||
|
||||
* `Bloopark systems <https://www.bloopark.de/>`_:
|
||||
|
||||
* Achraf Mhadhbi <machraf@bloopark.de>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
|
||||
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.
|
||||
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like {{object}}, {{user}}, {{ctx}} to add dynamic content.
|
||||
The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content.
|
||||
|
||||
Change the report related to the model from configuration and add a statement like:
|
||||
|
||||
|
@ -32,7 +32,7 @@ You should always use t-if since the method returns False if no template is foun
|
|||
If you want to use Qweb templates, or different context, you can specify it just like in
|
||||
mail.render.mixin with parameters:
|
||||
|
||||
- engine: "inline_template", "qweb" or "qweb_view",
|
||||
- engine: "jinja" or "qweb",
|
||||
- add_context: dict with your own context,
|
||||
- post_process: perform a post processing on rendered result
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
|
@ -366,9 +367,9 @@ ul.auto-toc {
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:00fc443044a8adc3983e4fd2f2627928cc6fe8001f4115c1a66d70b455ba14ee
|
||||
!! source digest: sha256:b5585908865a1c376a628641d6c4dbb9db7eda53997022212489f801fb5eefa2
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-base_comment_template"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/14.0/base_comment_template"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-base_comment_template"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=14.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>Add a new mixin class to define templates of comments to print on documents.
|
||||
The comment templates can be defined like make templates, so you can use variables from linked models.</p>
|
||||
<p>Two positions are available for the comments:</p>
|
||||
|
@ -432,7 +433,7 @@ It has a priority field (smaller number = higher priority)</p>
|
|||
</ol>
|
||||
<p>You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
|
||||
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.</p>
|
||||
<p>The template is a html field which will be rendered just like a mail template, so you can use variables like {{object}}, {{user}}, {{ctx}} to add dynamic content.</p>
|
||||
<p>The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content.</p>
|
||||
<p>Change the report related to the model from configuration and add a statement like:</p>
|
||||
<dl class="docutils">
|
||||
<dt><t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == ‘before_lines’)” t-as=”comment_template_top”></dt>
|
||||
|
@ -448,7 +449,7 @@ If you create a new template with the same configuration (Model, Domain, Positio
|
|||
<p>If you want to use Qweb templates, or different context, you can specify it just like in
|
||||
mail.render.mixin with parameters:</p>
|
||||
<ul class="simple">
|
||||
<li>engine: “inline_template”, “qweb” or “qweb_view”,</li>
|
||||
<li>engine: “jinja” or “qweb”,</li>
|
||||
<li>add_context: dict with your own context,</li>
|
||||
<li>post_process: perform a post processing on rendered result</li>
|
||||
</ul>
|
||||
|
@ -464,7 +465,7 @@ mail.render.mixin with parameters:</p>
|
|||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/reporting-engine/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
|
@ -501,14 +502,6 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|||
<li>Víctor Martínez</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="https://www.jarsa.com">Jarsa</a>:<ul>
|
||||
<li>Alan Ramos <<a class="reference external" href="mailto:alan.ramos@jarsa.com">alan.ramos@jarsa.com</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="https://www.bloopark.de/">Bloopark systems</a>:<ul>
|
||||
<li>Achraf Mhadhbi <<a class="reference external" href="mailto:machraf@bloopark.de">machraf@bloopark.de</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
|
@ -518,7 +511,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/16.0/base_comment_template">OCA/reporting-engine</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/14.0/base_comment_template">OCA/reporting-engine</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
# Copyright 2020 NextERP Romania SRL
|
||||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# Copyright 2023 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import Command
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.tests import common
|
||||
from odoo.tools.misc import mute_logger
|
||||
|
||||
from .fake_models import ResUsers, setup_test_model, teardown_test_model
|
||||
|
||||
|
||||
class TestCommentTemplate(common.TransactionCase):
|
||||
class TestCommentTemplate(common.SavepointCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
@ -20,14 +18,12 @@ class TestCommentTemplate(common.TransactionCase):
|
|||
cls.partner_id = cls.env.ref("base.res_partner_12")
|
||||
cls.partner2_id = cls.env.ref("base.res_partner_10")
|
||||
cls.ResPartnerTitle = cls.env["res.partner.title"]
|
||||
cls.main_company = cls.env.ref("base.main_company")
|
||||
cls.company = cls.env["res.company"].create({"name": "Test company"})
|
||||
cls.before_template_id = cls.env["base.comment.template"].create(
|
||||
{
|
||||
"name": "Top template",
|
||||
"text": "Text before lines",
|
||||
"models": cls.user_obj.model,
|
||||
"company_id": cls.company.id,
|
||||
"model_ids": [(6, 0, cls.user_obj.ids)],
|
||||
"company_id": False,
|
||||
}
|
||||
)
|
||||
cls.after_template_id = cls.env["base.comment.template"].create(
|
||||
|
@ -35,40 +31,15 @@ class TestCommentTemplate(common.TransactionCase):
|
|||
"name": "Bottom template",
|
||||
"position": "after_lines",
|
||||
"text": "Text after lines",
|
||||
"models": cls.user_obj.model,
|
||||
"company_id": cls.company.id,
|
||||
"model_ids": [(6, 0, cls.user_obj.ids)],
|
||||
"company_id": False,
|
||||
}
|
||||
)
|
||||
cls.user.partner_id.base_comment_template_ids = [
|
||||
(4, cls.before_template_id.id),
|
||||
(4, cls.after_template_id.id),
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
teardown_test_model(cls.env, ResUsers)
|
||||
return super(TestCommentTemplate, cls).tearDownClass()
|
||||
|
||||
def test_template_model_ids(self):
|
||||
self.assertIn(
|
||||
self.user_obj.model, self.before_template_id.mapped("model_ids.model")
|
||||
)
|
||||
self.assertEqual(len(self.before_template_id.model_ids), 1)
|
||||
self.assertIn(
|
||||
self.user_obj.model, self.after_template_id.mapped("model_ids.model")
|
||||
)
|
||||
self.assertEqual(len(self.after_template_id.model_ids), 1)
|
||||
|
||||
def test_template_models_constrains(self):
|
||||
with self.assertRaises(ValidationError):
|
||||
self.env["base.comment.template"].create(
|
||||
{
|
||||
"name": "Custom template",
|
||||
"text": "Text",
|
||||
"models": "incorrect.model",
|
||||
"company_id": self.company.id,
|
||||
}
|
||||
)
|
||||
super(TestCommentTemplate, cls).tearDownClass()
|
||||
|
||||
def test_template_name_get(self):
|
||||
self.assertEqual(
|
||||
|
@ -115,41 +86,22 @@ class TestCommentTemplate(common.TransactionCase):
|
|||
|
||||
def test_render_comment_text(self):
|
||||
expected_text = "Test comment render %s" % self.user.name
|
||||
self.before_template_id.text = "Test comment render {{object.name}}"
|
||||
self.before_template_id.text = "Test comment render ${object.name}"
|
||||
with self.with_user(self.user.login):
|
||||
self.assertEqual(
|
||||
self.user.render_comment(self.before_template_id), expected_text
|
||||
)
|
||||
|
||||
def test_render_comment_text_(self):
|
||||
ro_RO_lang = (
|
||||
self.env["res.lang"]
|
||||
.with_context(active_test=False)
|
||||
.search([("code", "=", "ro_RO")])
|
||||
)
|
||||
with mute_logger("odoo.addons.base.models.ir_translation"):
|
||||
self.env["base.language.install"].create(
|
||||
{"overwrite": True, "lang_ids": [(6, 0, [ro_RO_lang.id])]}
|
||||
).lang_install()
|
||||
|
||||
module = self.env.ref("base.module_test_translation_import")
|
||||
export = self.env["base.language.export"].create(
|
||||
{"lang": "ro_RO", "format": "po", "modules": [Command.set([module.id])]}
|
||||
)
|
||||
export.act_getfile()
|
||||
po_file = export.data
|
||||
self.assertIsNotNone(po_file)
|
||||
|
||||
self.env["res.lang"]._activate_lang("ro_RO")
|
||||
partner_title = self.ResPartnerTitle.create(
|
||||
{"name": "Ambassador", "shortcut": "Amb."}
|
||||
)
|
||||
# Adding translated terms
|
||||
ctx = dict(lang="ro_RO")
|
||||
partner_title.with_context(**ctx).write(
|
||||
{"name": "Ambasador", "shortcut": "Amb."}
|
||||
)
|
||||
partner_title.with_context(ctx).write({"name": "Ambasador", "shortcut": "Amb."})
|
||||
self.user.partner_id.title = partner_title
|
||||
self.before_template_id.text = "Test comment render {{object.title.name}}"
|
||||
self.before_template_id.text = "Test comment render ${object.title.name}"
|
||||
|
||||
expected_en_text = "Test comment render Ambassador"
|
||||
expected_ro_text = "Test comment render Ambasador"
|
||||
|
@ -158,7 +110,7 @@ class TestCommentTemplate(common.TransactionCase):
|
|||
self.user.render_comment(self.before_template_id), expected_en_text
|
||||
)
|
||||
self.assertEqual(
|
||||
self.user.with_context(**ctx).render_comment(self.before_template_id),
|
||||
self.user.with_context(ctx).render_comment(self.before_template_id),
|
||||
expected_ro_text,
|
||||
)
|
||||
|
||||
|
|
|
@ -4,14 +4,13 @@
|
|||
<field name="name">base.comment.template.search</field>
|
||||
<field name="model">base.comment.template</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree>
|
||||
<tree name="Comment Templates">
|
||||
<field name="sequence" widget="handle" />
|
||||
<field name="name" />
|
||||
<field name="position" />
|
||||
<field name="company_id" groups="base.group_multi_company" />
|
||||
<field name="partner_ids" />
|
||||
<field name="models" />
|
||||
<field name="model_ids" groups="base.group_erp_manager" />
|
||||
<field name="model_ids" />
|
||||
<field name="domain" />
|
||||
</tree>
|
||||
</field>
|
||||
|
@ -25,8 +24,7 @@
|
|||
<field name="position" />
|
||||
<field name="company_id" groups="base.group_multi_company" />
|
||||
<field name="partner_ids" />
|
||||
<field name="models" />
|
||||
<field name="model_ids" groups="base.group_erp_manager" />
|
||||
<field name="model_ids" />
|
||||
<field name="domain" />
|
||||
<field name="sequence" />
|
||||
</search>
|
||||
|
@ -69,14 +67,32 @@
|
|||
groups="base.group_multi_company"
|
||||
/>
|
||||
<field name="domain" />
|
||||
<field name="models" />
|
||||
<field name="model_ids" widget="many2many_tags" />
|
||||
<field name="partner_ids" widget="many2many_tags" />
|
||||
<field name="engine" groups="base.group_no_one" />
|
||||
</group>
|
||||
</group>
|
||||
<notebook>
|
||||
<page name="text" string="Comment">
|
||||
<field name="text" options="{'codeview': true}" />
|
||||
<field name="text" />
|
||||
</page>
|
||||
<page
|
||||
string="Dynamic Placeholder Generator"
|
||||
name="dynamic_placeholder_generator"
|
||||
>
|
||||
<group>
|
||||
<field
|
||||
name="model_object_field"
|
||||
domain="[('model_id','in',model_ids),('ttype','!=','one2many'),('ttype','!=','many2many')]"
|
||||
/>
|
||||
<field name="sub_object" readonly="1" />
|
||||
<field
|
||||
name="sub_model_object_field"
|
||||
domain="[('model_id','=',sub_object),('ttype','!=','one2many'),('ttype','!=','many2many')]"
|
||||
attrs="{'readonly':[('sub_object','=',False)],'required':[('sub_object','!=',False)]}"
|
||||
/>
|
||||
<field name="null_value" />
|
||||
<field name="copyvalue" />
|
||||
</group>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
from odoo import api, fields, models
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
from odoo.addons.base.models.res_partner import _lang_get
|
||||
|
||||
|
||||
class BaseCommentTemplatePreview(models.TransientModel):
|
||||
_name = "base.comment.template.preview"
|
||||
|
@ -13,9 +11,13 @@ class BaseCommentTemplatePreview(models.TransientModel):
|
|||
models = self.env["ir.model"].search([("is_comment_template", "=", True)])
|
||||
return [(model.model, model.name) for model in models]
|
||||
|
||||
@api.model
|
||||
def _selection_languages(self):
|
||||
return self.env["res.lang"].get_installed()
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields):
|
||||
result = super().default_get(fields)
|
||||
result = super(BaseCommentTemplatePreview, self).default_get(fields)
|
||||
base_comment_template_id = self.env.context.get(
|
||||
"default_base_comment_template_id"
|
||||
)
|
||||
|
@ -39,30 +41,26 @@ class BaseCommentTemplatePreview(models.TransientModel):
|
|||
base_comment_template_id = fields.Many2one(
|
||||
"base.comment.template", required=True, ondelete="cascade"
|
||||
)
|
||||
lang = fields.Selection(_lang_get, string="Template Preview Language")
|
||||
lang = fields.Selection(_selection_languages, string="Template Preview Language")
|
||||
engine = fields.Selection(
|
||||
[
|
||||
("inline_template", "Inline template"),
|
||||
("qweb", "QWeb"),
|
||||
("qweb_view", "QWeb view"),
|
||||
],
|
||||
[("jinja", "Jinja"), ("qweb", "QWeb")],
|
||||
string="Template Preview Engine",
|
||||
default="inline_template",
|
||||
default="jinja",
|
||||
)
|
||||
model_ids = fields.Many2many(
|
||||
"ir.model", related="base_comment_template_id.model_ids"
|
||||
)
|
||||
model_id = fields.Many2one("ir.model")
|
||||
body = fields.Char(compute="_compute_base_comment_template_fields")
|
||||
body = fields.Char("Body", compute="_compute_base_comment_template_fields")
|
||||
resource_ref = fields.Reference(
|
||||
string="Record reference", selection="_selection_target_model"
|
||||
)
|
||||
no_record = fields.Boolean(compute="_compute_no_record")
|
||||
no_record = fields.Boolean("No Record", compute="_compute_no_record")
|
||||
|
||||
@api.depends("model_id")
|
||||
def _compute_no_record(self):
|
||||
for preview in self:
|
||||
domain = safe_eval(self.base_comment_template_id.domain)
|
||||
domain = safe_eval(preview.base_comment_template_id.domain)
|
||||
preview.no_record = (
|
||||
(self.env[preview.model_id.model].search_count(domain) == 0)
|
||||
if preview.model_id
|
||||
|
@ -80,6 +78,6 @@ class BaseCommentTemplatePreview(models.TransientModel):
|
|||
):
|
||||
wizard.body = wizard.resource_ref.with_context(
|
||||
lang=wizard.lang
|
||||
).render_comment(self.base_comment_template_id, engine=wizard.engine)
|
||||
).render_comment(wizard.base_comment_template_id, engine=wizard.engine)
|
||||
else:
|
||||
wizard.body = wizard.base_comment_template_id.text
|
||||
|
|
|
@ -1,66 +1,78 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="base_comment_template_preview_form">
|
||||
<field name="name">base.comment.template.preview.form</field>
|
||||
<field name="model">base.comment.template.preview</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Base Comment Preview">
|
||||
<h3>Preview of
|
||||
<field
|
||||
<!-- SMS Template Preview -->
|
||||
<record model="ir.ui.view" id="base_comment_template_preview_form">
|
||||
<field name="name">base.comment.template.preview.form</field>
|
||||
<field name="model">base.comment.template.preview</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Base Comment Preview">
|
||||
<h3>Preview of
|
||||
<field
|
||||
name="base_comment_template_id"
|
||||
readonly="1"
|
||||
nolabel="1"
|
||||
class="oe_inline"
|
||||
/>
|
||||
</h3>
|
||||
<field name="no_record" invisible="1" />
|
||||
<field name="model_ids" />
|
||||
<div class="o_row">
|
||||
<span>Choose an example
|
||||
<field
|
||||
</h3>
|
||||
<field name="no_record" invisible="1" />
|
||||
<field name="model_ids" />
|
||||
<div class="o_row">
|
||||
<span>Choose an example
|
||||
<field
|
||||
name="model_id"
|
||||
domain="[('id', 'in', model_ids or False)]"
|
||||
/>
|
||||
record:
|
||||
</span>
|
||||
<div>
|
||||
<field
|
||||
record:
|
||||
</span>
|
||||
<div>
|
||||
<field
|
||||
name="resource_ref"
|
||||
class="oe_inline"
|
||||
options="{'hide_model': True, 'no_create': True, 'no_edit': True, 'no_open': True}"
|
||||
attrs="{'invisible': [('no_record', '=', True)]}"
|
||||
/>
|
||||
<span
|
||||
<span
|
||||
class="text-warning"
|
||||
attrs="{'invisible': [('no_record', '=', False)]}"
|
||||
>No records
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p>Choose a language:
|
||||
<field name="lang" class="oe_inline ml8" />
|
||||
</p>
|
||||
<p>Choose an engine:
|
||||
<field name="engine" class="oe_inline ml8" />
|
||||
</p>
|
||||
<label for="body" string="Base Comment content" />
|
||||
<hr />
|
||||
<field name="body" readonly="1" nolabel="1" options='{"safe": True}' />
|
||||
<hr />
|
||||
<footer>
|
||||
<button string="Discard" class="btn-secondary" special="cancel" />
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
<p>Choose a language:
|
||||
<field name="lang" class="oe_inline ml8" />
|
||||
</p>
|
||||
<p>Choose an engine:
|
||||
<field name="engine" class="oe_inline ml8" />
|
||||
</p>
|
||||
<label for="body" string="Base Comment content" />
|
||||
<hr />
|
||||
<field
|
||||
name="body"
|
||||
readonly="1"
|
||||
nolabel="1"
|
||||
options='{"safe": True}'
|
||||
/>
|
||||
<hr />
|
||||
<footer>
|
||||
<button
|
||||
string="Discard"
|
||||
class="btn-secondary"
|
||||
special="cancel"
|
||||
/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="base_comment_template_preview_action" model="ir.actions.act_window">
|
||||
<field name="name">Template Preview</field>
|
||||
<field name="res_model">base.comment.template.preview</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="base_comment_template_preview_form" />
|
||||
<field name="target">new</field>
|
||||
<field name="context">{'default_base_comment_template_id':active_id}</field>
|
||||
</record>
|
||||
|
||||
|
||||
<record id="base_comment_template_preview_action" model="ir.actions.act_window">
|
||||
<field name="name">Template Preview</field>
|
||||
<field name="res_model">base.comment.template.preview</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="base_comment_template_preview_form" />
|
||||
<field name="target">new</field>
|
||||
<field name="context">{'default_base_comment_template_id':active_id}</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
@ -7,7 +7,7 @@ BI SQL Editor
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:f10760dc18043c9ccf1eb3c0a1d4663407a6016eb9c7397d9612e66f6d68252c
|
||||
!! source digest: sha256:871fad5a3987e05f4ecded015ab6da184207818175a3abef69c20ffc44640e5d
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
|
@ -17,13 +17,13 @@ BI SQL Editor
|
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor
|
||||
:target: https://github.com/OCA/reporting-engine/tree/14.0/bi_sql_editor
|
||||
:alt: OCA/reporting-engine
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-bi_sql_editor
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-bi_sql_editor
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=14.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
@ -46,7 +46,6 @@ 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.
|
||||
|
@ -75,38 +74,40 @@ this module is interesting for the following use cases
|
|||
.. contents::
|
||||
:local:
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
* You must put this module as `server_wide_modules` in your odoo configuration file
|
||||
or add '--load=bi_sql_editor' if you start odoo in command line.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
* Go to Dashboard / Configuration / SQL Views
|
||||
To configure this module, you need to:
|
||||
|
||||
* Go to Settings / Technical / Database Structure / SQL Views
|
||||
|
||||
* tip your SQL request
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/01_sql_request.png
|
||||
:width: 800 px
|
||||
|
||||
* Select the group(s) that could have access to the view
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/02_security_access.png
|
||||
:width: 800 px
|
||||
|
||||
Optionnaly, you can add a domain.
|
||||
|
||||
A tipical domain in a multi company context is to write
|
||||
``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]``
|
||||
to make reporting depending on the current companies of the user.
|
||||
|
||||
* Click on the button 'Validate SQL Expression'
|
||||
* Click on the button 'Clean and Check Request'
|
||||
|
||||
* Once the sql request checked, the module analyses the column of the view,
|
||||
and propose field mapping. For each field, you can decide to create an index
|
||||
and set if it will be displayed on the pivot graph as a column, a row or a
|
||||
measure.
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/03_field_mapping.png
|
||||
:width: 800 px
|
||||
|
||||
* Click on the button 'Create SQL elements'. (this step could
|
||||
* 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:
|
||||
|
@ -115,7 +116,7 @@ to make reporting depending on the current companies of the user.
|
|||
the view. You can so define the frequency of the refresh.
|
||||
* the size of view (and the indexes is displayed)
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/04_materialized_view_setting.png
|
||||
:width: 800 px
|
||||
|
||||
* Finally, click on 'Create UI', to create new menu, action, graph view and
|
||||
|
@ -126,14 +127,17 @@ Usage
|
|||
|
||||
To use this module, you need to:
|
||||
|
||||
#. Go to 'Dashboards > SQL Reports'
|
||||
#. Go to 'Reporting' / 'Custom Reports'
|
||||
|
||||
#. Select the desired report
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pivot.png
|
||||
:width: 800 px
|
||||
|
||||
* You can switch to 'Graph' or 'tree' views as any report.
|
||||
* You can switch to 'Pie' chart or 'Line Chart' as any report,
|
||||
|
||||
.. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pie.png
|
||||
:width: 800 px
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
@ -141,7 +145,7 @@ Bug Tracker
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20bi_sql_editor%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
|
@ -192,6 +196,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|||
|
||||
|maintainer-legalsylvain|
|
||||
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/bi_sql_editor>`_ project on GitHub.
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/14.0/bi_sql_editor>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
|
@ -5,21 +5,20 @@
|
|||
{
|
||||
"name": "BI SQL Editor",
|
||||
"summary": "BI Views builder, based on Materialized or Normal SQL Views",
|
||||
"version": "16.0.1.1.1",
|
||||
"version": "14.0.1.0.5",
|
||||
"license": "AGPL-3",
|
||||
"category": "Reporting",
|
||||
"author": "GRAP,Odoo Community Association (OCA)",
|
||||
"maintainers": ["legalsylvain"],
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"depends": [
|
||||
"spreadsheet_dashboard",
|
||||
"sql_request_abstract",
|
||||
],
|
||||
"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",
|
||||
"maintainers": ["legalsylvain"],
|
||||
}
|
||||
|
|
|
@ -11,26 +11,25 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT *
|
||||
FROM unexisting_table
|
||||
ORDER BY unexisting_field
|
||||
]]>
|
||||
SELECT *
|
||||
FROM unexisting_table
|
||||
ORDER BY unexisting_field
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<record id="partner_sql_view" model="bi.sql.view">
|
||||
<field name="name">Partners View</field>
|
||||
<field name="technical_name">partners_view</field>
|
||||
<field name="is_materialized" eval="True" />
|
||||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT
|
||||
name as x_name,
|
||||
street as x_street,
|
||||
company_id as x_company_id
|
||||
FROM res_partner
|
||||
ORDER BY name
|
||||
]]>
|
||||
SELECT
|
||||
name as x_name,
|
||||
street as x_street,
|
||||
company_id as x_company_id
|
||||
FROM res_partner
|
||||
ORDER BY name
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<record id="module_sql_view" model="bi.sql.view">
|
||||
|
@ -40,14 +39,29 @@ ORDER BY name
|
|||
<field
|
||||
name="query"
|
||||
><![CDATA[
|
||||
SELECT
|
||||
name as x_name,
|
||||
case
|
||||
when author ilike '%OpenERP SA%' THEN 'Odoo SA'
|
||||
when author ilike '%Odoo Community Association (OCA)%' THEN 'OCA'
|
||||
else 'Undefined Author' END as x_author_type
|
||||
FROM ir_module_module
|
||||
]]>
|
||||
SELECT
|
||||
name as x_name,
|
||||
case
|
||||
when author ilike '%OpenERP SA%' THEN 'Odoo SA'
|
||||
when author ilike '%Odoo Community Association (OCA)%' THEN 'OCA'
|
||||
else 'Undefined Author' END as x_author_type
|
||||
FROM ir_module_module
|
||||
]]>
|
||||
</field>
|
||||
</record>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_validate_sql_expression"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_create_sql_view_and_model"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
<function
|
||||
model="bi.sql.view"
|
||||
name="button_create_ui"
|
||||
eval="([ref('module_sql_view')])"
|
||||
/>
|
||||
</odoo>
|
||||
|
|
|
@ -19,21 +19,24 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
|
@ -44,11 +47,6 @@ msgstr ""
|
|||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
|
@ -56,6 +54,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
|
@ -65,8 +64,10 @@ msgid "Allowed Users"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Are you sure you want to set to draft this SQL View. It will delete the "
|
||||
"materialized view, and all the previous mapping realized with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -129,16 +130,9 @@ msgstr ""
|
|||
msgid "Computed Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid ""
|
||||
"Context value that will be inserted for this field in all the views. "
|
||||
"Important note : please write a context with single quote."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -189,19 +183,10 @@ msgid ""
|
|||
"False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -215,11 +200,6 @@ msgstr ""
|
|||
msgid "Extras Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
|
@ -235,16 +215,6 @@ msgstr ""
|
|||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
|
@ -286,33 +256,22 @@ msgid "Has Group Changed"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
"If filled, the query will be executed against an external database, "
|
||||
"configured in Odoo main configuration file. "
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -320,16 +279,6 @@ msgstr ""
|
|||
msgid "Index Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid "Is Group by"
|
||||
|
@ -345,16 +294,10 @@ msgstr ""
|
|||
msgid "Is Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"It will delete the materialized view, and all the previous mapping realized "
|
||||
"with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
|
@ -370,11 +313,6 @@ msgstr "Última actualización por"
|
|||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
|
||||
msgid "Main Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
@ -390,16 +328,6 @@ msgstr ""
|
|||
msgid "Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
|
@ -423,7 +351,6 @@ msgid "Name"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -431,31 +358,6 @@ msgid ""
|
|||
"Columns name should be prefixed by 'x_'."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
|
@ -502,7 +404,6 @@ msgid "Odoo Tree View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree views are supported"
|
||||
|
@ -514,20 +415,8 @@ msgid "Open View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -535,18 +424,12 @@ msgstr ""
|
|||
msgid "Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
|
@ -563,12 +446,11 @@ msgid "Rule Definition"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -577,6 +459,11 @@ msgstr ""
|
|||
msgid "SQL Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
|
@ -618,11 +505,21 @@ msgstr ""
|
|||
msgid "SQL Views"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Size of the materialized view and its indexes"
|
||||
|
@ -630,13 +527,11 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
|
@ -661,13 +556,6 @@ msgstr ""
|
|||
msgid "Technical Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid ""
|
||||
"Technical fields, used in modules that depends on this one to know if groups "
|
||||
"has changed, and that according access should be updated."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "This will be used as the name of the Odoo field, displayed for users"
|
||||
|
@ -715,11 +603,21 @@ msgid ""
|
|||
"created the model"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid "Use External Database"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "User Interface"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
@ -736,7 +634,6 @@ msgid "Views, Action and Menu Created"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
|
@ -744,7 +641,6 @@ msgid "You can not create indexes on non materialized views"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -797,3 +693,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence
|
||||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
|
|
@ -20,21 +20,24 @@ msgstr ""
|
|||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
|
@ -45,11 +48,6 @@ msgstr ""
|
|||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
|
@ -57,6 +55,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
|
@ -66,8 +65,10 @@ msgid "Allowed Users"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Are you sure you want to set to draft this SQL View. It will delete the "
|
||||
"materialized view, and all the previous mapping realized with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -130,16 +131,9 @@ msgstr ""
|
|||
msgid "Computed Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid ""
|
||||
"Context value that will be inserted for this field in all the views. "
|
||||
"Important note : please write a context with single quote."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -190,19 +184,10 @@ msgid ""
|
|||
"False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
|
@ -216,11 +201,6 @@ msgstr ""
|
|||
msgid "Extras Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
|
@ -236,16 +216,6 @@ msgstr ""
|
|||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
|
@ -287,33 +257,22 @@ msgid "Has Group Changed"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
"If filled, the query will be executed against an external database, "
|
||||
"configured in Odoo main configuration file. "
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -321,16 +280,6 @@ msgstr ""
|
|||
msgid "Index Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid "Is Group by"
|
||||
|
@ -346,16 +295,10 @@ msgstr ""
|
|||
msgid "Is Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"It will delete the materialized view, and all the previous mapping realized "
|
||||
"with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
|
@ -371,11 +314,6 @@ msgstr "آخر تحديث بواسطة"
|
|||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
|
||||
msgid "Main Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
@ -391,16 +329,6 @@ msgstr ""
|
|||
msgid "Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
|
@ -424,7 +352,6 @@ msgid "Name"
|
|||
msgstr "الاسم"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -432,31 +359,6 @@ msgid ""
|
|||
"Columns name should be prefixed by 'x_'."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
|
@ -503,7 +405,6 @@ msgid "Odoo Tree View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree views are supported"
|
||||
|
@ -515,20 +416,8 @@ msgid "Open View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -536,18 +425,12 @@ msgstr ""
|
|||
msgid "Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
|
@ -564,12 +447,11 @@ msgid "Rule Definition"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -578,6 +460,11 @@ msgstr ""
|
|||
msgid "SQL Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
|
@ -619,11 +506,21 @@ msgstr ""
|
|||
msgid "SQL Views"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "الأمن"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr "حفظ كمسودة"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Size of the materialized view and its indexes"
|
||||
|
@ -631,13 +528,11 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
|
@ -662,13 +557,6 @@ msgstr ""
|
|||
msgid "Technical Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid ""
|
||||
"Technical fields, used in modules that depends on this one to know if groups "
|
||||
"has changed, and that according access should be updated."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "This will be used as the name of the Odoo field, displayed for users"
|
||||
|
@ -716,11 +604,21 @@ msgid ""
|
|||
"created the model"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid "Use External Database"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "User Interface"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
@ -737,7 +635,6 @@ msgid "Views, Action and Menu Created"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
|
@ -745,7 +642,6 @@ msgid "You can not create indexes on non materialized views"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -799,11 +695,10 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Set to Draft"
|
||||
#~ msgstr "حفظ كمسودة"
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "الأمن"
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Draft"
|
||||
#~ msgstr "مسوّدة"
|
||||
|
|
|
@ -19,21 +19,24 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%(model_name)s Access %(full_name)s"
|
||||
msgid "%m/%d/%Y %H:%M:%S UTC"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s (Copy)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "%s Access %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Access %s"
|
||||
|
@ -44,11 +47,6 @@ msgstr ""
|
|||
msgid "Action Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Action Settings"
|
||||
|
@ -56,6 +54,7 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Allowed Groups"
|
||||
msgstr ""
|
||||
|
||||
|
@ -65,8 +64,10 @@ msgid "Allowed Users"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"Are you sure you want to set to draft this SQL View. It will delete the "
|
||||
"materialized view, and all the previous mapping realized with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -129,16 +130,9 @@ msgstr ""
|
|||
msgid "Computed Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid ""
|
||||
"Context value that will be inserted for this field in all the views. "
|
||||
"Important note : please write a context with single quote."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Create SQL Elements"
|
||||
msgid "Create SQL View, Indexes and Models"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -189,19 +183,10 @@ msgid ""
|
|||
"False)]."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete SQL Elements"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Delete UI"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
|
@ -215,11 +200,6 @@ msgstr ""
|
|||
msgid "Extras Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context
|
||||
msgid "Field Context"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "Field Description"
|
||||
|
@ -235,16 +215,6 @@ msgstr ""
|
|||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
|
||||
msgid ""
|
||||
|
@ -286,33 +256,22 @@ msgid "Has Group Changed"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message
|
||||
msgid "Has Message"
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid ""
|
||||
"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI "
|
||||
"Valid'."
|
||||
"If filled, the query will be executed against an external database, "
|
||||
"configured in Odoo main configuration file. "
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -320,16 +279,6 @@ msgstr ""
|
|||
msgid "Index Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible
|
||||
msgid "Invisible"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by
|
||||
msgid "Is Group by"
|
||||
|
@ -345,16 +294,10 @@ msgstr ""
|
|||
msgid "Is Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid ""
|
||||
"It will delete the materialized view, and all the previous mapping realized "
|
||||
"with the columns"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
|
@ -370,11 +313,6 @@ msgstr "Последно обновено от"
|
|||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_main_attachment_id
|
||||
msgid "Main Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text
|
||||
msgid "Materialized Text"
|
||||
|
@ -390,16 +328,6 @@ msgstr ""
|
|||
msgid "Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
|
||||
msgid "Minimum"
|
||||
|
@ -423,7 +351,6 @@ msgid "Name"
|
|||
msgstr "Име"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -431,31 +358,6 @@ msgid ""
|
|||
"Columns name should be prefixed by 'x_'."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id
|
||||
msgid "Odoo Action"
|
||||
|
@ -502,7 +404,6 @@ msgid "Odoo Tree View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Only graph, pivot or tree views are supported"
|
||||
|
@ -514,20 +415,8 @@ msgid "Open View"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide
|
||||
msgid "Optional (hidden)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show
|
||||
msgid "Optional (shown)"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Please set related models on the following fields %s"
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Preview SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -535,18 +424,12 @@ msgstr ""
|
|||
msgid "Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Refresh Materialized View"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid "Refresh Materialized View %s"
|
||||
|
@ -563,12 +446,11 @@ msgid "Rule Definition"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n"
|
||||
" %(error)s"
|
||||
"SQL Error while creating %s VIEW %s :\n"
|
||||
" %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
|
@ -577,6 +459,11 @@ msgstr ""
|
|||
msgid "SQL Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "SQL Query"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor
|
||||
msgid "SQL Reports"
|
||||
|
@ -618,11 +505,21 @@ msgstr ""
|
|||
msgid "SQL Views"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Security"
|
||||
msgstr "Защита"
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection
|
||||
msgid "Selection Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Set to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size
|
||||
msgid "Size of the materialized view and its indexes"
|
||||
|
@ -630,13 +527,11 @@ msgstr ""
|
|||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state
|
||||
msgid ""
|
||||
"State of the Request:\n"
|
||||
" * 'Draft': Not tested\n"
|
||||
|
@ -661,13 +556,6 @@ msgstr ""
|
|||
msgid "Technical Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed
|
||||
msgid ""
|
||||
"Technical fields, used in modules that depends on this one to know if groups "
|
||||
"has changed, and that according access should be updated."
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description
|
||||
msgid "This will be used as the name of the Odoo field, displayed for users"
|
||||
|
@ -715,11 +603,21 @@ msgid ""
|
|||
"created the model"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__use_external_database
|
||||
msgid "Use External Database"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "User Interface"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "Validate SQL Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name
|
||||
msgid "View Name"
|
||||
|
@ -736,7 +634,6 @@ msgid "Views, Action and Menu Created"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0
|
||||
#, python-format
|
||||
|
@ -744,7 +641,6 @@ msgid "You can not create indexes on non materialized views"
|
|||
msgstr ""
|
||||
|
||||
#. module: bi_sql_editor
|
||||
#. odoo-python
|
||||
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
|
@ -798,5 +694,7 @@ msgstr ""
|
|||
msgid "sequence"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Security"
|
||||
#~ msgstr "Защита"
|
||||
#. module: bi_sql_editor
|
||||
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
|
||||
msgid "this will refresh the materialized view"
|
||||
msgstr ""
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue