Merge branch '2.0-fixed' into '2.0'

2.0 fixed

See merge request flectra-community/reporting-engine!3
This commit is contained in:
Thomas Winteler 2023-01-17 08:42:16 +00:00
commit 9db8004060
562 changed files with 115031 additions and 859 deletions

File diff suppressed because it is too large Load Diff

View File

@ -9,17 +9,26 @@ Available addons
addon | version | summary addon | version | summary
--- | --- | --- --- | --- | ---
[report_qweb_encrypt](report_qweb_encrypt/) | 2.0.1.0.0| Allow to encrypt qweb pdfs [report_qr](report_qr/) | 2.0.1.0.1| Web QR Manager
[report_xlsx_helper](report_xlsx_helper/) | 2.0.1.0.0| Report xlsx helpers [report_qweb_encrypt](report_qweb_encrypt/) | 2.0.1.0.1| Allow to encrypt qweb pdfs
[report_xml](report_xml/) | 2.0.1.0.1| Allow to generate XML reports [report_qweb_signer](report_qweb_signer/) | 2.0.1.0.1| Sign Qweb PDFs usign a PKCS#12 certificate
[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 2.0.1.0.0| Add watermarks to your QWEB PDF reports [base_comment_template](base_comment_template/) | 2.0.3.0.1| Add conditional mako template to any reporton models that inherits comment.template.
[report_xlsx_helper_demo](report_xlsx_helper_demo/) | 2.0.1.0.0| Report xlsx helpers - demo [report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 2.0.1.0.0| Report Qweb Element Page Visibility
[base_comment_template](base_comment_template/) | 2.0.2.0.1| Add conditional mako template to any reporton models that inherits comment.template.
[report_xlsx](report_xlsx/) | 2.0.1.0.2| Base module to create xlsx report
[report_qweb_parameter](report_qweb_parameter/) | 2.0.1.0.0| Add new parameters for qweb templates in order to reduce field length and check minimal length
[kpi_dashboard](kpi_dashboard/) | 2.0.1.0.0| Create Dashboards using kpis
[bi_sql_editor](bi_sql_editor/) | 2.0.1.0.0| BI Views builder, based on Materialized or Normal SQL Views
[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 2.0.1.0.0| Add new parameters for a paper format to be used by wkhtmltopdf command as arguments.
[bi_view_editor](bi_view_editor/) | 2.0.1.0.0| Graphical BI views builder for Odoo [bi_view_editor](bi_view_editor/) | 2.0.1.0.0| Graphical BI views builder for Odoo
[report_async](report_async/) | 2.0.1.0.0| Central place to run reports live or async
[report_xlsx](report_xlsx/) | 2.0.1.0.8| Base module to create xlsx report
[kpi_dashboard_bokeh](kpi_dashboard_bokeh/) | 2.0.1.0.0| Create dashboards using bokeh
[bi_sql_editor](bi_sql_editor/) | 2.0.1.0.1| BI Views builder, based on Materialized or Normal SQL Views
[report_qweb_parameter](report_qweb_parameter/) | 2.0.1.0.0| Add new parameters for qweb templates in order to reduce field length and check minimal length
[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 2.0.1.0.0| Add new parameters for a paper format to be used by wkhtmltopdf command as arguments.
[report_xlsx_helper](report_xlsx_helper/) | 2.0.1.0.2| Report xlsx helpers
[report_csv](report_csv/) | 2.0.1.0.0| Base module to create csv report
[report_xlsx_helper_demo](report_xlsx_helper_demo/) | 2.0.1.0.0| Report xlsx helpers - demo
[report_py3o](report_py3o/) | 2.0.1.0.2| Reporting engine based on Libreoffice (ODT -> ODT, ODT -> PDF, ODT -> DOC, ODT -> DOCX, ODS -> ODS, etc.)
[report_xml](report_xml/) | 2.0.1.0.3| Allow to generate XML reports
[report_py3o_fusion_server](report_py3o_fusion_server/) | 2.0.1.0.0| Let the fusion server handle format conversion.
[kpi_dashboard](kpi_dashboard/) | 2.0.1.1.0| Create Dashboards using kpis
[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 2.0.1.0.1| Add watermarks to your QWEB PDF reports
[report_layout_config](report_layout_config/) | 2.0.1.0.0| Add possibility to easily modify the global report layout

View File

@ -87,20 +87,33 @@ The template is a html field which will be rendered just like a mail template, s
Change the report related to the model from configuration and add a statement like: Change the report related to the model from configuration and add a statement like:
<p t-if="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"> <t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
<div t-raw="o.render_comment(comment_template_top)" />
<span t-raw="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/> </t>
</p>
<p t-if="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"> <t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'after_lines')" t-as="comment_template_bottom">
<div t-raw="o.render_comment(comment_template_bottom)" />
<span t-raw="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/> </t>
</p>
You should always use t-if since the method returns False if no template is found. You should always use t-if since the method returns False if no template is found.
If you want to use Qweb templates, or different context, you can specify it just like in
mail.render.mixin with parameters:
- engine: "jinja" or "qweb",
- add_context: dict with your own context,
- post_process: perform a post processing on rendered result
so you could use it :
<t t-foreach="o.comment_template_ids.filtered(lambda x: x.position == 'before_lines')" t-as="comment_template_top">
<div t-raw="o.render_comment(comment_template_top, engine='qweb', add_context={my dict}, postprocess=True)" />
</t>
Bug Tracker Bug Tracker
=========== ===========

View File

@ -1,3 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import models from . import models, wizard

View File

@ -5,7 +5,7 @@
"name": "Base Comments Templates", "name": "Base Comments Templates",
"summary": "Add conditional mako template to any report" "summary": "Add conditional mako template to any report"
"on models that inherits comment.template.", "on models that inherits comment.template.",
"version": "2.0.2.0.1", "version": "2.0.3.0.1",
"category": "Reporting", "category": "Reporting",
"website": "https://gitlab.com/flectra-community/reporting-engine", "website": "https://gitlab.com/flectra-community/reporting-engine",
"author": "Camptocamp, Odoo Community Association (OCA)", "author": "Camptocamp, Odoo Community Association (OCA)",
@ -15,6 +15,7 @@
"data": [ "data": [
"security/ir.model.access.csv", "security/ir.model.access.csv",
"security/security.xml", "security/security.xml",
"wizard/base_comment_template_preview_views.xml",
"views/base_comment_template_view.xml", "views/base_comment_template_view.xml",
"views/res_partner_view.xml", "views/res_partner_view.xml",
], ],

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización por" msgstr "Última actualización por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "أنشئ بواسطة" msgstr "أنشئ بواسطة"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "أنشئ في" msgstr "أنشئ في"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "المعرف"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "آخر تعديل في"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "آخر تحديث بواسطة" msgstr "آخر تحديث بواسطة"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "آخر تحديث في" msgstr "آخر تحديث في"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -13,6 +13,13 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: \n" "Plural-Forms: \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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -23,11 +30,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -68,16 +115,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -91,6 +146,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -99,6 +155,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -116,8 +173,14 @@ msgid ""
"partner." "partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -126,14 +189,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -151,6 +221,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -161,6 +236,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -177,6 +272,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -184,6 +294,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -222,3 +333,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Създадено от" msgstr "Създадено от"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Създадено на" msgstr "Създадено на"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Последно обновено на"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Последно обновено от" msgstr "Последно обновено от"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последно обновено на" msgstr "Последно обновено на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Kreirao" msgstr "Kreirao"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Kreirano" msgstr "Kreirano"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Zadnje mijenjano"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zadnji ažurirao" msgstr "Zadnji ažurirao"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnje ažurirano" msgstr "Zadnje ažurirano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creat per" msgstr "Creat per"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creat el" msgstr "Creat el"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Darrera modificació el"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Darrera Actualització per" msgstr "Darrera Actualització per"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Darrera Actualització el" msgstr "Darrera Actualització el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Vytvořil(a)" msgstr "Vytvořil(a)"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Vytvořeno" msgstr "Vytvořeno"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Naposled upraveno"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Naposled upraveno" msgstr "Naposled upraveno"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Naposled upraveno" msgstr "Naposled upraveno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Oprettet af" msgstr "Oprettet af"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Oprettet den" msgstr "Oprettet den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "Id"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Sidst ændret den"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Sidst opdateret af" msgstr "Sidst opdateret af"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sidst opdateret den" msgstr "Sidst opdateret den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr "Aktiv"
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Kontakt"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Erstellt von" msgstr "Erstellt von"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Erstellt am" msgstr "Erstellt am"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zuletzt geändert am"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zuletzt aktualisiert von" msgstr "Zuletzt aktualisiert von"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr "Bezeichnung"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Position im Dokument" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Suffix" #~ msgstr "Suffix"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Δημιουργήθηκε από " msgstr "Δημιουργήθηκε από "
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Δημιουργήθηκε στις" msgstr "Δημιουργήθηκε στις"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Κωδικός"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από" msgstr "Τελευταία ενημέρωση από"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις" msgstr "Τελευταία ενημέρωση στις"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Created by" msgstr "Created by"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Created on" msgstr "Created on"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Last Modified on"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Last Updated by" msgstr "Last Updated by"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Last Updated on" msgstr "Last Updated on"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.0.6\n" "X-Generator: Poedit 2.0.6\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr "Activo"
msgid "Archived" msgid "Archived"
msgstr "Archivado" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Contacto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado el" msgstr "Creado el"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr "Filtro de dominio"
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "Modelo" msgstr "Modelo"
@ -124,8 +182,14 @@ msgstr ""
"Si se define, la plantilla de comentario va a estar disponible para los " "Si se define, la plantilla de comentario va a estar disponible para los "
"contactos seleccionados." "contactos seleccionados."
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -134,14 +198,21 @@ msgstr "Última modificación el"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última modificación por" msgstr "Última modificación por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última modificación el" msgstr "Última modificació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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -159,6 +230,11 @@ msgstr "Nombre"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "Nombre de la plantilla de comentario" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -169,6 +245,26 @@ msgstr "Contacto"
msgid "Position on document" msgid "Position on document"
msgstr "Posición en el documento" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -185,6 +281,21 @@ msgstr "Comentarios de contactos que se pueden incluir en informes"
msgid "Template" msgid "Template"
msgstr "Plantilla de comentario" msgstr "Plantilla de comentario"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -192,6 +303,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -239,6 +351,11 @@ msgstr ""
"base.comment.template para poner cabecera y pie de página en los informes " "base.comment.template para poner cabecera y pie de página en los informes "
"basados en las plantillas de comentarios creadas" "basados en las 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 ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Después de las líneas" #~ msgstr "Después de las líneas"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización realizada por" msgstr "Última actualización realizada por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización el" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID (identificación)"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización de" msgstr "Última actualización de"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado" msgstr "Creado"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última Modificación el"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Actualizado por" msgstr "Actualizado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Actualizado" msgstr "Actualizado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ultima actualización por" msgstr "Ultima actualización por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización en" msgstr "Ultima actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización de" msgstr "Última actualización de"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID (identificación)"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización de" msgstr "Última actualización de"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización por" msgstr "Última actualización por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima modificacion realizada"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ultima actualizacion por" msgstr "Ultima actualizacion por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización realizada" msgstr "Ultima actualización realizada"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima Modificación en"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Actualizado última vez por" msgstr "Actualizado última vez por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima Actualización" msgstr "Ultima Actualización"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ultima actualización por" msgstr "Ultima actualización por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualización en" msgstr "Ultima actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Modificada por última vez"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización realizada por" msgstr "Última actualización realizada por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualizacion en" msgstr "Ultima actualizacion en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Loonud" msgstr "Loonud"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Loodud" msgstr "Loodud"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Viimati muudetud"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Viimati uuendatud" msgstr "Viimati uuendatud"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Viimati uuendatud" msgstr "Viimati uuendatud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Nork sortua" msgstr "Nork sortua"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Created on" msgstr "Created on"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Last Updated by" msgstr "Last Updated by"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Last Updated on" msgstr "Last Updated on"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "ایجاد شده توسط" msgstr "ایجاد شده توسط"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "ایجاد شده در" msgstr "ایجاد شده در"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "شناسه"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "تاریخ آخرین به‌روزرسانی"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط" msgstr "آخرین به روز رسانی توسط"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "آخرین به روز رسانی در" msgstr "آخرین به روز رسانی در"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Luonut" msgstr "Luonut"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Luotu" msgstr "Luotu"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Viimeksi muokattu"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Viimeksi päivittänyt" msgstr "Viimeksi päivittänyt"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Viimeksi päivitetty" msgstr "Viimeksi päivitetty"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Créé par" msgstr "Créé par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Créé le" msgstr "Créé le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Dernière mise-à-jour le"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Dernière mise-à-jour par" msgstr "Dernière mise-à-jour par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Dernière mise-à-jour le" msgstr "Dernière mise-à-jour le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Position sur le document" msgstr "Position sur le document"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,6 +338,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Après les lignes" #~ msgstr "Après les lignes"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Créé par" msgstr "Créé par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Créé le" msgstr "Créé le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Identifiant"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Dernière mise à jour par" msgstr "Dernière mise à jour par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Dernière mise à jour le" msgstr "Dernière mise à jour le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Créé par" msgstr "Créé par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Créé le" msgstr "Créé le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Dernière modification le"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Modifié par" msgstr "Modifié par"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Modifié le" msgstr "Modifié le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.4\n" "X-Generator: Weblate 3.4\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado por" msgstr "Creado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado en" msgstr "Creado en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "ültima actualización por" msgstr "ültima actualización por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Posición no documento" msgstr "Posición no documento"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Despois das liñas" #~ msgstr "Despois das liñas"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "נוצר על ידי" msgstr "נוצר על ידי"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "נוצר ב-" msgstr "נוצר ב-"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "מזהה"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "תאריך שינוי אחרון"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי" msgstr "עודכן לאחרונה על ידי"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "עודכן לאחרונה על" msgstr "עודכן לאחרונה על"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -21,6 +21,14 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.10\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -31,11 +39,51 @@ msgstr "Aktivan"
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -76,16 +124,24 @@ msgstr "Kontakt"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Stvorio/la" msgstr "Stvorio/la"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Stvoreno dana" msgstr "Stvoreno dana"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -99,6 +155,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -107,6 +164,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -122,8 +180,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -132,14 +196,21 @@ msgstr "Zadnja izmjena"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zadnju izmjenu izvršio/la" msgstr "Zadnju izmjenu izvršio/la"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnja izmjena" msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -157,6 +228,11 @@ msgstr "Naziv"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -167,6 +243,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Pozicija na dokumentu" msgstr "Pozicija na dokumentu"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -183,6 +279,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -190,6 +301,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -229,6 +341,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Iza linija" #~ msgstr "Iza linija"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Kreirao" msgstr "Kreirao"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Kreirano" msgstr "Kreirano"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnje modificirano"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zadnji ažurirao" msgstr "Zadnji ažurirao"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnje ažurirano" msgstr "Zadnje ažurirano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Készítette" msgstr "Készítette"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Létrehozás dátuma" msgstr "Létrehozás dátuma"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Utolsó frissítés dátuma"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Utoljára frissítve, által" msgstr "Utoljára frissítve, által"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Utoljára frissítve " msgstr "Utoljára frissítve "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Dibuat oleh" msgstr "Dibuat oleh"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Dibuat pada" msgstr "Dibuat pada"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Terakhir Dimodifikasi pada"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Diperbaharui oleh" msgstr "Diperbaharui oleh"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Diperbaharui pada" msgstr "Diperbaharui pada"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -10,40 +10,89 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n" "Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n" "POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2022-05-09 12:05+0000\n"
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n" "Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n" "Language: it\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
msgstr "" msgstr "Attivo"
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Archived" msgid "Archived"
msgstr "Archiviato"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Base Comment Preview"
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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
msgstr "Coomento" msgstr "Commento"
#. module: base_comment_template #. 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_comment_template__comment_template_ids
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template
msgid "Comment Template" msgid "Comment Template"
msgstr "" msgstr "Modello commento"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
@ -55,35 +104,43 @@ msgstr ""
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
msgid "Comment Templates" msgid "Comment Templates"
msgstr "" msgstr "Modelli commento"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template #: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Comments Template" msgid "Comments Template"
msgstr "" msgstr "Modello Commenti"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company" msgid "Company"
msgstr "" msgstr "Azienda"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner #: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact" msgid "Contact"
msgstr "" msgstr "Contatto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creato da" msgstr "Creato da"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creato il" msgstr "Creato il"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -93,10 +150,11 @@ msgstr "Nome da visualizzare"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
msgid "Filter Domain" msgid "Filter Domain"
msgstr "" msgstr "Filtra Dominio"
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,93 +163,155 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr "Modello IR"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "" msgid ""
"If set, the comment template will be available only for the selected company." "If set, the comment template will be available only for the selected company."
msgstr "" msgstr ""
"Se impostato, il modello commento sarà disponibile solo per l'azienda "
"selezionata."
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids
msgid "" msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
"Se importato, il modello commento sarà disponibile solo per il contatto "
"selezionato."
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
msgid "Last Modified on" msgid "Last Modified on"
msgstr "Ultima Modifica il" msgstr "Ultima modifica il"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ultimo aggiornamento di" msgstr "Ultimo aggiornamento di"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultimo aggiornamento il" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
msgstr "" msgstr "Modelli"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name #: 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_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form
msgid "Name" msgid "Name"
msgstr "" msgstr "Nome"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
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 "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
msgstr "" msgstr "Contatto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position on document" msgid "Position on document"
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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
msgstr "" msgstr "Sequenza"
#. module: base_comment_template #. 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_partner__base_comment_template_ids
#: model:ir.model.fields,help:base_comment_template.field_res_users__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" msgid "Specific partner comments that can be included in reports"
msgstr "" msgstr ""
"Commenti specifici per contatto che possono essere inclusi nelle stampe"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
msgid "Template" msgid "Template"
msgstr "Modello"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
msgstr "" msgstr "Più basso il numero, più alta la priorità"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
msgstr "" msgstr ""
"Questo modello commento sarà disponibile in questi modelli. Puoi "
"visualizzare solo i modelli in cui è possibile impostare il modello commento."
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain
@ -199,26 +319,31 @@ msgid ""
"This comment template will be available only for objects that satisfy the " "This comment template will be available only for objects that satisfy the "
"condition" "condition"
msgstr "" msgstr ""
"Questo modello commento sarà disponibile solo per i record che soddisfano la "
"condizione"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position #: 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." msgid "This field allows to select the position of the comment on reports."
msgstr "" msgstr ""
"Questo campo permette la selezione della posizione del commento nella stampa."
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text #: 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." msgid "This is the text template that will be inserted into reports."
msgstr "" msgstr "Questo è il prossimo modello che sarà inserito nelle stampe."
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
msgid "Top" msgid "Top"
msgstr "" msgstr "In alto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_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." msgid "Whether this model supports in reports to add comment templates."
msgstr "" msgstr ""
"Se questo modello supporta o meno l'aggiunta di modelli commento nella "
"stampa."
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_comment_template #: model:ir.model,name:base_comment_template.model_comment_template
@ -226,6 +351,13 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
"base.comment.template per inserire commenti in cima e in fondo alle stampe "
"basati su modelli di commento"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "Position" #~ msgid "Position"
#~ msgstr "Posizione" #~ msgstr "Posizione"

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.7.1\n" "X-Generator: Weblate 3.7.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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "作成者" msgstr "作成者"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "作成日" msgstr "作成日"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最終更新日"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "最終更新者" msgstr "最終更新者"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "最終更新日" msgstr "最終更新日"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "ドキュメント上の位置" msgstr "ドキュメント上の位置"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "明細行後" #~ msgstr "明細行後"

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "작성자" msgstr "작성자"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "작성일" msgstr "작성일"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "최근 수정"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "최근 갱신한 사람" msgstr "최근 갱신한 사람"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "최근 갱신 날짜" msgstr "최근 갱신 날짜"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n" "%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Sukūrė" msgstr "Sukūrė"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Sukurta" msgstr "Sukurta"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Paskutinį kartą keista"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino" msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta" msgstr "Paskutinį kartą atnaujinta"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n" "%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Sukūrė" msgstr "Sukūrė"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Sukurta" msgstr "Sukurta"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino" msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta" msgstr "Paskutinį kartą atnaujinta"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n" "2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Izveidoja" msgstr "Izveidoja"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Izveidots" msgstr "Izveidots"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja" msgstr "Pēdējo reizi atjaunoja"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Pēdējās izmaiņas" msgstr "Pēdējās izmaiņas"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Креирано од" msgstr "Креирано од"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Креирано на" msgstr "Креирано на"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Последна промена на"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Последно ажурирање од" msgstr "Последно ажурирање од"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последно ажурирање на" msgstr "Последно ажурирање на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Үүсгэгч" msgstr "Үүсгэгч"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Үүсгэсэн" msgstr "Үүсгэсэн"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн" msgstr "Сүүлийн засвар хийсэн"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо" msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Opprettet av" msgstr "Opprettet av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Opprettet den" msgstr "Opprettet den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Sist oppdatert "
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Sist oppdatert av" msgstr "Sist oppdatert av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sist oppdatert" msgstr "Sist oppdatert"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Laget av" msgstr "Laget av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Laget den" msgstr "Laget den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Sist endret den"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Sist oppdatert av" msgstr "Sist oppdatert av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Sist oppdatert den" msgstr "Sist oppdatert den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Aangemaakt door" msgstr "Aangemaakt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Aangemaakt op" msgstr "Aangemaakt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Laatst bijgewerkt op"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Laatst bijgewerkt door" msgstr "Laatst bijgewerkt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Gemaakt door" msgstr "Gemaakt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Gemaakt op" msgstr "Gemaakt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Laatst Aangepast op"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Laatst bijgewerkt door" msgstr "Laatst bijgewerkt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Aangemaakt door" msgstr "Aangemaakt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Aangemaakt op" msgstr "Aangemaakt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Laatst gewijzigd op"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Laatst bijgewerkt door" msgstr "Laatst bijgewerkt door"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Laatst bijgewerkt op" msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" "%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Utworzone przez" msgstr "Utworzone przez"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Utworzono" msgstr "Utworzono"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Ostatnio modyfikowano"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez" msgstr "Ostatnio modyfikowane przez"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ostatnia zmiana" msgstr "Ostatnia zmiana"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.3.2\n" "X-Generator: Weblate 4.3.2\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr "Ativo"
msgid "Archived" msgid "Archived"
msgstr "Arquivado" msgstr "Arquivado"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Base Comment Preview"
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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "Fundo" msgstr "Fundo"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose a language:"
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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an example"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Contacto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Criado por" msgstr "Criado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Criado em" msgstr "Criado em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr "Domínio Filtro"
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "Modelo IR" msgstr "Modelo IR"
@ -124,8 +182,14 @@ msgstr ""
"Se definido, o modelo de comentário estará disponível apenas para o parceiro " "Se definido, o modelo de comentário estará disponível apenas para o parceiro "
"selecionado." "selecionado."
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -134,14 +198,21 @@ msgstr "Modificado a última vez por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Atualizado pela última vez por" msgstr "Atualizado pela última vez por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Atualizado pela última vez em" msgstr "Atualizado pela última vez em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -159,6 +230,11 @@ msgstr "Nome"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "Nome/descrição deste modelo de comentário" msgstr "Nome/descrição deste modelo de comentário"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -169,6 +245,26 @@ msgstr "Parceiro"
msgid "Position on document" msgid "Position on document"
msgstr "Posição no documento" msgstr "Posição no documento"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -186,6 +282,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "Modelo" msgstr "Modelo"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -193,6 +304,7 @@ msgstr "O número menor = A maior prioridade"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -240,6 +352,11 @@ msgstr ""
"base.comment.template para colocar cabeçalho e rodapé em relatórios baseados " "base.comment.template para colocar cabeçalho e rodapé em relatórios baseados "
"em modelos de comentários criados" "em modelos de comentários criados"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Após as linhas" #~ msgstr "Após as linhas"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.8\n" "X-Generator: Weblate 3.8\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr "Ativo"
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Contato"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Criado por" msgstr "Criado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Criado em" msgstr "Criado em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Última atualização em"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última atualização por" msgstr "Última atualização por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última atualização em" msgstr "Última atualização em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr "Nome"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Posição no documento" msgstr "Posição no documento"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Depois das linhas" #~ msgstr "Depois das linhas"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 3.10\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr "Ativo"
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Contacto"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Criado por" msgstr "Criado por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Criado em" msgstr "Criado em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Última Modificação Em"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Atualizado pela última vez por" msgstr "Atualizado pela última vez por"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Atualizado pela última vez em" msgstr "Atualizado pela última vez em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr "Nome"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Posição no documento" msgstr "Posição no documento"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Após as linhas" #~ msgstr "Após as linhas"

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n" "2: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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creat de" msgstr "Creat de"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Creat la" msgstr "Creat la"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima actualizare în"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Ultima actualizare făcută de" msgstr "Ultima actualizare făcută de"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Ultima actualizare la" msgstr "Ultima actualizare la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n" "%100>=11 && n%100<=14)? 2 : 3);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Создано" msgstr "Создано"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Создан" msgstr "Создан"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Последний раз обновлено" msgstr "Последний раз обновлено"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Последний раз обновлено" msgstr "Последний раз обновлено"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.10\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr "Aktívne"
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Kontakt"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Vytvoril" msgstr "Vytvoril"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Vytvorené" msgstr "Vytvorené"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Posledná modifikácia"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Naposledy upravoval" msgstr "Naposledy upravoval"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Naposledy upravované" msgstr "Naposledy upravované"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr "Názov"
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Pozícia v dokumente" msgstr "Pozícia v dokumente"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Za položkami" #~ msgstr "Za položkami"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n" "%100==4 ? 2 : 3);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Ustvaril" msgstr "Ustvaril"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Ustvarjeno" msgstr "Ustvarjeno"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnjič spremenjeno"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zadnjič posodobil" msgstr "Zadnjič posodobil"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnjič posodobljeno" msgstr "Zadnjič posodobljeno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "Pozicija na dokumentu" msgstr "Pozicija na dokumentu"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""
#~ msgid "After lines" #~ msgid "After lines"
#~ msgstr "Po postavkah" #~ msgstr "Po postavkah"

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Kreiran" msgstr "Kreiran"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "" msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Kreirao" msgstr "Kreirao"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Kreiran" msgstr "Kreiran"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnja izmjena"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Zadnja izmjena" msgstr "Zadnja izmjena"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Zadnja izmjena" msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -227,3 +339,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Skapad av" msgstr "Skapad av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Skapad den" msgstr "Skapad den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Senast redigerad"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Senast uppdaterad av" msgstr "Senast uppdaterad av"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Senast uppdaterad" msgstr "Senast uppdaterad"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "สร้างโดย" msgstr "สร้างโดย"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "สร้างเมื่อ" msgstr "สร้างเมื่อ"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "รหัส"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย" msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ" msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Oluşturan" msgstr "Oluşturan"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Oluşturuldu" msgstr "Oluşturuldu"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Son değişiklik"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Son güncelleyen" msgstr "Son güncelleyen"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Son güncelleme" msgstr "Son güncelleme"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Oluşturan" msgstr "Oluşturan"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Oluşturulma tarihi" msgstr "Oluşturulma tarihi"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Kimlik"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "En son güncelleme tarihi"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "En son güncelleyen " msgstr "En son güncelleyen "
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "En son güncelleme tarihi" msgstr "En son güncelleme tarihi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Створив" msgstr "Створив"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Дата створення" msgstr "Дата створення"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Остання модифікація"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Востаннє оновив" msgstr "Востаннє оновив"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Останнє оновлення" msgstr "Останнє оновлення"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Được tạo bởi" msgstr "Được tạo bởi"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Được tạo vào" msgstr "Được tạo vào"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Sửa lần cuối vào"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Last Updated by" msgstr "Last Updated by"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào" msgstr "Cập nhật lần cuối vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -225,3 +337,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "Tạo bởi" msgstr "Tạo bởi"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "Tạo vào" msgstr "Tạo vào"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi" msgstr "Cập nhật lần cuối bởi"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào" msgstr "Cập nhật lần cuối vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "创建者" msgstr "创建者"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "创建时间" msgstr "创建时间"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最后修改时间"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "最后更新者" msgstr "最后更新者"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "上次更新日期" msgstr "上次更新日期"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\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>"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active" msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived" msgid "Archived"
msgstr "" 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 ""
#. 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 ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template_preview
msgid "Base Comment Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body
msgid "Body"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines #: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom" msgid "Bottom"
msgstr "" 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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Choose an engine:"
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 ""
#. module: base_comment_template #. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment" msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_uid
msgid "Created by" msgid "Created by"
msgstr "建立者" msgstr "建立者"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on" msgid "Created on"
msgstr "建立於" msgstr "建立於"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Discard"
msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template #. 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__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_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_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id #: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "編號"
#. module: base_comment_template #. module: base_comment_template
#: 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__model_ids
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_ids
msgid "IR Model" msgid "IR Model"
msgstr "" msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner." "If set, the comment template will be available only for the selected partner."
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__jinja
msgid "Jinja"
msgstr ""
#. module: base_comment_template #. 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____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_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_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update #: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最後修改:"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "最後更新:" msgstr "最後更新:"
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "最後更新於" msgstr "最後更新於"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__model_id
msgid "Model"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model #: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models" msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template" msgid "Name/description of this comment template"
msgstr "" 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner" msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document" msgid "Position on document"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Preview"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "Preview of"
msgstr ""
#. module: base_comment_template
#: 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 ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence" msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action
msgid "Template Preview"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang
msgid "Template Preview Language"
msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority" msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. module: base_comment_template #. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid "" msgid ""
"This comment template will be available on this models. You can see here " "This comment template will be available on this models. You can see here "
"only models allowed to set the coment template." "only models allowed to set the coment template."
@ -226,3 +338,8 @@ msgid ""
"base.comment.template to put header and footer in reports based on created " "base.comment.template to put header and footer in reports based on created "
"comment templates" "comment templates"
msgstr "" msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid "record:"
msgstr ""

View File

@ -1,4 +1 @@
from . import base_comment_template from . import base_comment_template, comment_template, ir_model, res_partner
from . import comment_template
from . import res_partner
from . import ir_model

View File

@ -42,3 +42,17 @@ class CommentTemplate(models.AbstractModel):
domain = safe_eval(template.domain) domain = safe_eval(template.domain)
if not domain or record.filtered_domain(domain): if not domain or record.filtered_domain(domain):
record.comment_template_ids = [(4, template.id)] record.comment_template_ids = [(4, template.id)]
def render_comment(
self, comment, engine="jinja", add_context=None, post_process=False
):
self.ensure_one()
comment_texts = self.env["mail.render.mixin"]._render_template(
comment.text,
self._name,
[self.id],
engine=engine,
add_context=add_context,
post_process=post_process,
)
return comment_texts[self.id] or ""

View File

@ -1,3 +1,4 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0 access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0
access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1 access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1
access_base_comment_template_preview,access.base.comment.template.preview,model_base_comment_template_preview,base.group_user,1,1,1,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_base_comment_template_user access_base_comment_template_user model_base_comment_template 1 0 0 0
3 access_base_comment_template access_base_comment_template no one model_base_comment_template base.group_no_one 1 1 1 1
4 access_base_comment_template_preview access.base.comment.template.preview model_base_comment_template_preview base.group_user 1 1 1 0

View File

@ -433,15 +433,30 @@ It has a priority field (smaller number = higher priority)</p>
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> 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> <p>Change the report related to the model from configuration and add a statement like:</p>
<p>&lt;p t-if=”o.get_comment_template(before_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”&gt;</p> <dl class="docutils">
<blockquote> <dt>&lt;t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == before_lines)” t-as=”comment_template_top”&gt;</dt>
&lt;span t-raw=”o.get_comment_template(before_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”/&gt;</blockquote> <dd>&lt;div t-raw=”o.render_comment(comment_template_top)” /&gt;</dd>
<p>&lt;/p&gt;</p> </dl>
<p>&lt;p t-if=”o.get_comment_template(after_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”&gt;</p> <p>&lt;/t&gt;</p>
<blockquote> <dl class="docutils">
&lt;span t-raw=”o.get_comment_template(after_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”/&gt;</blockquote> <dt>&lt;t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == after_lines)” t-as=”comment_template_bottom”&gt;</dt>
<p>&lt;/p&gt;</p> <dd>&lt;div t-raw=”o.render_comment(comment_template_bottom)” /&gt;</dd>
</dl>
<p>&lt;/t&gt;</p>
<p>You should always use t-if since the method returns False if no template is found.</p> <p>You should always use t-if since the method returns False if no template is found.</p>
<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: “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>
<p>so you could use it :</p>
<dl class="docutils">
<dt>&lt;t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == before_lines)” t-as=”comment_template_top”&gt;</dt>
<dd>&lt;div t-raw=”o.render_comment(comment_template_top, engine=qweb, add_context={my dict}, postprocess=True)” /&gt;</dd>
</dl>
<p>&lt;/t&gt;</p>
</div> </div>
<div class="section" id="bug-tracker"> <div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1> <h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>

View File

@ -2,6 +2,7 @@
# Copyright 2021 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). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from flectra.tests import common from flectra.tests import common
from flectra.tools.misc import mute_logger
from .fake_models import ResUsers, setup_test_model, teardown_test_model from .fake_models import ResUsers, setup_test_model, teardown_test_model
@ -16,6 +17,7 @@ class TestCommentTemplate(common.SavepointCase):
cls.user2 = cls.env.ref("base.demo_user0") cls.user2 = cls.env.ref("base.demo_user0")
cls.partner_id = cls.env.ref("base.res_partner_12") cls.partner_id = cls.env.ref("base.res_partner_12")
cls.partner2_id = cls.env.ref("base.res_partner_10") 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.main_company = cls.env.ref("base.main_company")
cls.company = cls.env["res.company"].create({"name": "Test company"}) cls.company = cls.env["res.company"].create({"name": "Test company"})
cls.before_template_id = cls.env["base.comment.template"].create( cls.before_template_id = cls.env["base.comment.template"].create(
@ -87,3 +89,61 @@ class TestCommentTemplate(common.SavepointCase):
self.assertTrue( self.assertTrue(
self.before_template_id not in self.partner_id.base_comment_template_ids self.before_template_id not in self.partner_id.base_comment_template_ids
) )
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}"
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):
with mute_logger("flectra.addons.base.models.ir_translation"):
self.env["base.language.install"].create(
{"lang": "ro_RO", "overwrite": True}
).lang_install()
with mute_logger("flectra.tools.translate"):
self.env["base.update.translations"].create({"lang": "ro_RO"}).act_update()
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."})
self.user.partner_id.title = partner_title
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"
with self.with_user(self.user.login):
self.assertEqual(
self.user.render_comment(self.before_template_id), expected_en_text
)
self.assertEqual(
self.user.with_context(ctx).render_comment(self.before_template_id),
expected_ro_text,
)
def test_partner_template_wizaard(self):
partner_preview = (
self.env["base.comment.template.preview"]
.with_context(default_base_comment_template_id=self.before_template_id.id)
.create({})
)
self.assertTrue(partner_preview)
default = (
self.env["base.comment.template.preview"]
.with_context(default_base_comment_template_id=self.before_template_id.id)
.default_get(partner_preview._fields)
)
self.assertTrue(default.get("base_comment_template_id"))
resource_ref = partner_preview._selection_target_model()
self.assertTrue(len(resource_ref) >= 2)
partner_preview._compute_no_record()
self.assertTrue(partner_preview.no_record)
def test_partner_commercial_fields(self):
self.assertTrue(
"base_comment_template_ids" in self.env["res.partner"]._commercial_fields()
)

View File

@ -44,6 +44,14 @@
bg_color="bg-danger" bg_color="bg-danger"
attrs="{'invisible': [('active', '=', True)]}" attrs="{'invisible': [('active', '=', True)]}"
/> />
<button
class="oe_stat_button"
name="%(base_comment_template_preview_action)d"
icon="fa-search-plus"
string="Preview"
type="action"
target="new"
/>
</div> </div>
<div class="oe_title"> <div class="oe_title">
<h1> <h1>

View File

@ -0,0 +1 @@
from . import base_comment_template_preview

View File

@ -0,0 +1,83 @@
from flectra import api, fields, models
from flectra.tools.safe_eval import safe_eval
class BaseCommentTemplatePreview(models.TransientModel):
_name = "base.comment.template.preview"
_description = "Base Comment Template Preview"
@api.model
def _selection_target_model(self):
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(BaseCommentTemplatePreview, self).default_get(fields)
base_comment_template_id = self.env.context.get(
"default_base_comment_template_id"
)
if not base_comment_template_id or "resource_ref" not in fields:
return result
base_comment_template = self.env["base.comment.template"].browse(
base_comment_template_id
)
result["model_ids"] = base_comment_template.model_ids
domain = safe_eval(base_comment_template.domain)
model = (
base_comment_template.model_ids[0]
if base_comment_template.model_ids
else False
)
res = self.env[model.model].search(domain, limit=1)
if res:
result["resource_ref"] = "%s,%s" % (model.model, res.id)
return result
base_comment_template_id = fields.Many2one(
"base.comment.template", required=True, ondelete="cascade"
)
lang = fields.Selection(_selection_languages, string="Template Preview Language")
engine = fields.Selection(
[("jinja", "Jinja"), ("qweb", "QWeb")],
string="Template Preview Engine",
default="jinja",
)
model_ids = fields.Many2many(
"ir.model", related="base_comment_template_id.model_ids"
)
model_id = fields.Many2one("ir.model")
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("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)
preview.no_record = (
(self.env[preview.model_id.model].search_count(domain) == 0)
if preview.model_id
else True
)
@api.depends("lang", "resource_ref", "engine")
def _compute_base_comment_template_fields(self):
for wizard in self:
if (
wizard.model_id
and wizard.resource_ref
and wizard.lang
and wizard.engine
):
wizard.body = wizard.resource_ref.with_context(
lang=wizard.lang
).render_comment(self.base_comment_template_id, engine=wizard.engine)
else:
wizard.body = wizard.base_comment_template_id.text

View File

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="utf-8" ?>
<flectra>
<data>
<!-- 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
name="model_id"
domain="[('id', 'in', model_ids or False)]"
/>
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
class="text-warning"
attrs="{'invisible': [('no_record', '=', False)]}"
>No records
</span>
</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>
<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>
</data>
</flectra>

View File

@ -185,6 +185,14 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use. promote its widespread use.
.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
:target: https://github.com/legalsylvain
:alt: legalsylvain
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/14.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. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@ -5,10 +5,11 @@
{ {
"name": "BI SQL Editor", "name": "BI SQL Editor",
"summary": "BI Views builder, based on Materialized or Normal SQL Views", "summary": "BI Views builder, based on Materialized or Normal SQL Views",
"version": "2.0.1.0.0", "version": "2.0.1.0.1",
"license": "AGPL-3", "license": "AGPL-3",
"category": "Reporting", "category": "Reporting",
"author": "GRAP,Odoo Community Association (OCA)", "author": "GRAP,Odoo Community Association (OCA)",
"maintainers": ["legalsylvain"],
"website": "https://gitlab.com/flectra-community/reporting-engine", "website": "https://gitlab.com/flectra-community/reporting-engine",
"depends": ["base", "sql_request_abstract"], "depends": ["base", "sql_request_abstract"],
"data": [ "data": [

View File

@ -75,6 +75,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -85,6 +90,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -108,9 +120,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -140,6 +157,11 @@ msgstr "Creado en"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -164,6 +186,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -187,6 +210,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -217,6 +245,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -230,9 +263,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -256,6 +297,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "" msgstr ""
@ -276,11 +318,21 @@ msgstr "Última actualización en"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -494,6 +546,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -546,6 +603,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -578,12 +640,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "أنشئ في"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "اسم العرض" msgstr "اسم العرض"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "المعرف" msgstr "المعرف"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "آخر تعديل في" msgstr "آخر تعديل في"
@ -277,11 +319,21 @@ msgstr "آخر تحديث في"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -75,6 +75,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -85,6 +90,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -108,9 +120,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -140,6 +157,11 @@ msgstr "Създадено на"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -164,6 +186,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Име за Показване" msgstr "Име за Показване"
@ -187,6 +210,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -217,6 +245,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -230,9 +263,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -256,6 +297,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Последно обновено на" msgstr "Последно обновено на"
@ -276,11 +318,21 @@ msgstr "Последно обновено на"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -494,6 +546,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -546,6 +603,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -578,12 +640,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -260,6 +260,13 @@ msgstr ""
msgid "ID" msgid "ID"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -589,6 +596,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Kreirano"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Prikaži naziv" msgstr "Prikaži naziv"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Zadnje mijenjano" msgstr "Zadnje mijenjano"
@ -277,11 +319,21 @@ msgstr "Zadnje ažurirano"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -75,6 +75,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -85,6 +90,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -108,9 +120,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -140,6 +157,11 @@ msgstr "Creat el"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -164,6 +186,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Veure el nom" msgstr "Veure el nom"
@ -187,6 +210,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -217,6 +245,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -230,9 +263,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -256,6 +297,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Darrera modificació el" msgstr "Darrera modificació el"
@ -276,11 +318,21 @@ msgstr "Darrera Actualització el"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -494,6 +546,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -546,6 +603,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -578,12 +640,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -75,6 +75,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -85,6 +90,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -108,9 +120,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -140,6 +157,11 @@ msgstr "Vytvořeno"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -164,6 +186,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Zobrazovaný název" msgstr "Zobrazovaný název"
@ -187,6 +210,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -217,6 +245,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -230,9 +263,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -256,6 +297,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Naposled upraveno" msgstr "Naposled upraveno"
@ -276,11 +318,21 @@ msgstr "Naposled upraveno"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -494,6 +546,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -546,6 +603,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -578,12 +640,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -75,6 +75,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -85,6 +90,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -108,9 +120,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -140,6 +157,11 @@ msgstr "Oprettet den"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -164,6 +186,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Vist navn" msgstr "Vist navn"
@ -187,6 +210,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -217,6 +245,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -230,9 +263,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Id" msgstr "Id"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -256,6 +297,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Sidst ændret den" msgstr "Sidst ændret den"
@ -276,11 +318,21 @@ msgstr "Sidst opdateret den"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -494,6 +546,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -546,6 +603,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -578,12 +640,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -80,6 +80,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "Verfügbar" msgstr "Verfügbar"
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
#, fuzzy #, fuzzy
@ -91,6 +96,13 @@ msgstr "Bi SQL Ansichtsfeld"
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "Bi SQL Ansichtsfeld" msgstr "Bi SQL Ansichtsfeld"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -116,9 +128,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -148,6 +165,11 @@ msgstr "Angelegt am"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -172,6 +194,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Anzeigename" msgstr "Anzeigename"
@ -195,6 +218,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "Feldart" msgstr "Feldart"
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -225,6 +253,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -238,9 +271,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -264,6 +305,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Zuletzt geändert am" msgstr "Zuletzt geändert am"
@ -284,11 +326,21 @@ msgstr "Zuletzt aktualisiert am"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -505,6 +557,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -557,6 +614,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -589,12 +651,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Δημιουργήθηκε στις"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr ""
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "Κωδικός" msgstr "Κωδικός"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "" msgstr ""
@ -277,11 +319,21 @@ msgstr "Τελευταία ενημέρωση στις"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Created on"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Display Name" msgstr "Display Name"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Last Modified on" msgstr "Last Modified on"
@ -277,11 +319,21 @@ msgstr "Last Updated on"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -78,6 +78,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "Disponible" msgstr "Disponible"
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -88,6 +93,13 @@ msgstr "Vista BI SQL"
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "Campo Vista BI SQL" msgstr "Campo Vista BI SQL"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -117,10 +129,15 @@ msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
"Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o \"tree\"" "Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o \"tree\""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "Contexto" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -149,6 +166,11 @@ msgstr "Creado en"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "Cron Task que refrescará la vista materializada" msgstr "Cron Task que refrescará la vista materializada"
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -175,12 +197,13 @@ msgstr ""
"Defina aquí restricciones de acceso a los datos.\n" "Defina aquí restricciones de acceso a los datos.\n"
" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " " Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be "
"created. A typical Multi Company rule is for exemple \n" "created. A typical Multi Company rule is for exemple \n"
" ['|', ('x_company_id','child_of', [user.company_id." " ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','=',"
"id]),('x_company_id','=',False)]." "False)]."
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -204,6 +227,11 @@ msgstr "Descripción del campo"
msgid "Field Type" msgid "Field Type"
msgstr "Tipo de campo" msgstr "Tipo de campo"
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -234,6 +262,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -247,9 +280,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -273,6 +314,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Última modificación en" msgstr "Última modificación en"
@ -293,11 +335,21 @@ msgstr "Última actualización en"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -511,6 +563,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -563,6 +620,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -595,12 +657,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format
@ -660,5 +716,8 @@ msgstr ""
msgid "this will refresh the materialized view" msgid "this will refresh the materialized view"
msgstr "" msgstr ""
#~ msgid "Context"
#~ msgstr "Contexto"
#~ msgid "Draft" #~ msgid "Draft"
#~ msgstr "No suscrito" #~ msgstr "No suscrito"

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Creado en"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Mostrar Nombre" msgstr "Mostrar Nombre"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Última modificación en" msgstr "Última modificación en"
@ -277,11 +319,21 @@ msgstr "Última actualización el"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Creado en"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID (identificación)" msgstr "ID (identificación)"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Última modificación en" msgstr "Última modificación en"
@ -277,11 +319,21 @@ msgstr "Última actualización en"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

View File

@ -76,6 +76,11 @@ msgstr ""
msgid "Available" msgid "Available"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg
msgid "Average"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_bi_sql_view #: model:ir.model,name:bi_sql_editor.model_bi_sql_view
msgid "BI SQL View" msgid "BI SQL View"
@ -86,6 +91,13 @@ msgstr ""
msgid "Bi SQL View Field" msgid "Bi SQL View Field"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid ""
"By default, Odoo will sum the values when grouping. If you wish to alter the "
"behaviour, choose an alternate Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by
msgid "" msgid ""
@ -109,9 +121,14 @@ msgstr ""
msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\""
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context
msgid "Computed Action Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Context" msgid "Computed Context"
msgstr "" msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
@ -141,6 +158,11 @@ msgstr "Creado"
msgid "Cron Task that will refresh the materialized view" msgid "Cron Task that will refresh the materialized view"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "Custom Context"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size
msgid "Database Size" msgid "Database Size"
@ -165,6 +187,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name #: model:ir.model.fields,field_description:bi_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_bi_sql_view_field__display_name
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre Público" msgstr "Nombre Público"
@ -188,6 +211,11 @@ msgstr ""
msgid "Field Type" msgid "Field Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model,name:bi_sql_editor.model_ir_model_fields
msgid "Fields"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
msgid "" msgid ""
@ -218,6 +246,11 @@ msgstr ""
msgid "Graph Type" msgid "Graph Type"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator
msgid "Group Operator"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed
msgid "Has Group Changed" msgid "Has Group Changed"
@ -231,9 +264,17 @@ msgstr ""
#. module: bi_sql_editor #. 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__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_bi_sql_view_field__id
#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: bi_sql_editor
#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__use_external_database
msgid ""
"If filled, the query will be executed against an external database, "
"configured in Odoo main configuration file. "
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name
msgid "Index Name" msgid "Index Name"
@ -257,6 +298,7 @@ msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update #: model:ir.model.fields,field_description:bi_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_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" msgid "Last Modified on"
msgstr "Última Modificación el" msgstr "Última Modificación el"
@ -277,11 +319,21 @@ msgstr "Actualizado"
msgid "Materialized Text" msgid "Materialized Text"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max
msgid "Maximum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure #: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure
msgid "Measure" msgid "Measure"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min
msgid "Minimum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
@ -495,6 +547,11 @@ msgid ""
"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" "current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum
msgid "Sum"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name #: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name
msgid "Technical Name" msgid "Technical Name"
@ -547,6 +604,11 @@ msgid ""
"created the model" "created the model"
msgstr "" 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 #. module: bi_sql_editor
#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form #: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form
msgid "User Interface" msgid "User Interface"
@ -579,12 +641,6 @@ msgstr ""
msgid "You can not create indexes on non materialized views" msgid "You can not create indexes on non materialized views"
msgstr "" msgstr ""
#. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format
msgid "You can only process this action on SQL Valid items"
msgstr ""
#. module: bi_sql_editor #. module: bi_sql_editor
#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 #: code:addons/bi_sql_editor/models/bi_sql_view.py:0
#, python-format #, python-format

Some files were not shown because too many files have changed in this diff Show More