[14.0] [FIX] Fix base comment template rendering.

[UPD] Update base_comment_template.pot

[UPD] README.rst

base_comment_template 14.0.3.0.0

Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: reporting-engine-14.0/reporting-engine-14.0-base_comment_template
Translate-URL: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-base_comment_template/
pull/646/head
Mihai Fekete 2022-01-10 16:49:29 +02:00 committed by Víctor Martínez
parent 452b4ca547
commit 153dabf9cb
82 changed files with 8388 additions and 29 deletions

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:
<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)"/>
</p>
</t>
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
===========

View File

@ -1,3 +1,3 @@
# 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",
"summary": "Add conditional mako template to any report"
"on models that inherits comment.template.",
"version": "14.0.2.0.1",
"version": "14.0.3.0.0",
"category": "Reporting",
"website": "https://github.com/OCA/reporting-engine",
"author": "Camptocamp, Odoo Community Association (OCA)",
@ -15,6 +15,7 @@
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"wizard/base_comment_template_preview_views.xml",
"views/base_comment_template_view.xml",
"views/res_partner_view.xml",
],

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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 "
"&& 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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "المعرف"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "آخر تعديل في"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -23,11 +30,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -68,16 +115,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -91,6 +146,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -99,6 +155,7 @@ msgstr ""
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -116,8 +173,14 @@ msgid ""
"partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -126,14 +189,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -151,6 +221,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -161,6 +236,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -177,6 +272,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -184,6 +294,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Създадено от"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Последно обновено на"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Zadnje mijenjano"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creat per"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Darrera modificació el"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Naposled upraveno"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Oprettet af"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "Id"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Sidst ændret den"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr "Aktiv"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Kontakt"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Erstellt von"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zuletzt geändert am"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zuletzt aktualisiert von"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr "Bezeichnung"
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates"
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"
#~ msgstr "Suffix"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Κωδικός"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Created by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Last Modified on"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr "Activo"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Contacto"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr "Filtro de dominio"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr "Modelo"
@ -124,8 +182,14 @@ msgstr ""
"Si se define, la plantilla de comentario va a estar disponible para los "
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -134,14 +198,21 @@ msgstr "Última modificación el"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última modificación por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -159,6 +230,11 @@ msgstr "Nombre"
msgid "Name/description of this comment template"
msgstr "Nombre de la plantilla de comentario"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -169,6 +245,26 @@ msgstr "Contacto"
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -185,6 +281,21 @@ msgstr "Comentarios de contactos que se pueden incluir en informes"
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -192,6 +303,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"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"
#~ msgstr "Después de las líneas"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID (identificación)"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última Modificación el"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID (identificación)"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima modificacion realizada"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima Modificación en"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Modificada por última vez"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Loonud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Viimati muudetud"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Nork sortua"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "شناسه"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "تاریخ آخرین به‌روزرسانی"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Luonut"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Viimeksi muokattu"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Dernière mise-à-jour le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by"
msgstr "Dernière mise-à-jour par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on 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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -226,6 +338,11 @@ msgid ""
"comment templates"
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"
#~ msgstr "Après les lignes"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Identifiant"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Dernière modification le"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Última modificación"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates"
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"
#~ msgstr "Despois das liñas"

View File

@ -19,6 +19,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "נוצר על ידי"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "מזהה"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "תאריך שינוי אחרון"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -31,11 +39,51 @@ msgstr "Aktivan"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -76,16 +124,24 @@ msgstr "Kontakt"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Stvorio/la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -99,6 +155,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -107,6 +164,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -122,8 +180,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -132,14 +196,21 @@ msgstr "Zadnja izmjena"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zadnju izmjenu izvršio/la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -157,6 +228,11 @@ msgstr "Naziv"
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -167,6 +243,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -183,6 +279,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -190,6 +301,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -229,6 +341,11 @@ msgid ""
"comment templates"
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"
#~ 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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnje modificirano"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Készítette"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Utolsó frissítés dátuma"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Dibuat oleh"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Terakhir Dimodifikasi pada"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr "Attivo"
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 ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
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 ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Contatto"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creato da"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr "Filtra Dominio"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr "Modello IR"
@ -125,8 +183,14 @@ 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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -135,14 +199,21 @@ msgstr "Ultima modifica il"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -160,6 +231,11 @@ msgstr "Nome"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -170,6 +246,26 @@ msgstr "Contatto"
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 ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -179,13 +275,29 @@ msgstr "Sequenza"
#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids
#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids
msgid "Specific partner comments that can be included in reports"
msgstr "Commenti specifici per contatto che possono essere inclusi nelle stampe"
msgstr ""
"Commenti specifici per contatto che possono essere inclusi nelle stampe"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
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 ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -193,6 +305,7 @@ msgstr "Più basso il numero, più alta la priorità"
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -241,5 +354,10 @@ 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"
#~ msgstr "Posizione"

View File

@ -19,6 +19,14 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "作成者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最終更新日"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "最終更新者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates"
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"
#~ msgstr "明細行後"

View File

@ -18,6 +18,14 @@ msgstr ""
"Content-Transfer-Encoding: \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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "작성자"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "최근 수정"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Paskutinį kartą keista"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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 : "
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Izveidoja"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Креирано од"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Последна промена на"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Үүсгэгч"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Сүүлийн засвар хийсэн огноо"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Opprettet av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Sist oppdatert "
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Laget av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Sist endret den"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Laatst bijgewerkt op"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Gemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Laatst Aangepast op"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Laatst gewijzigd op"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Utworzone przez"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Ostatnio modyfikowano"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr "Ativo"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr "Fundo"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Contacto"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr "Domínio Filtro"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr "Modelo IR"
@ -124,8 +182,14 @@ msgstr ""
"Se definido, o modelo de comentário estará disponível apenas para o parceiro "
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -134,14 +198,21 @@ msgstr "Modificado a última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -159,6 +230,11 @@ msgstr "Nome"
msgid "Name/description of this comment template"
msgstr "Nome/descrição deste modelo de comentário"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -169,6 +245,26 @@ msgstr "Parceiro"
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -186,6 +282,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -193,6 +304,7 @@ msgstr "O número menor = A maior prioridade"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"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"
#~ msgstr "Após as linhas"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr "Ativo"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Contato"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Última atualização em"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr "Nome"
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates"
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"
#~ msgstr "Depois das linhas"

View File

@ -20,6 +20,14 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 3.10\n"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form
msgid ""
"<span class=\"text-warning\" attrs=\"{'invisible': [('no_record', '=', "
"False)]}\">No records\n"
" </span>"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr "Ativo"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr "Contacto"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Última Modificação Em"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr "Nome"
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates"
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"
#~ 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)))?"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Creat de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Ultima actualizare în"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Создано"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr "Aktívne"
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr "Kontakt"
#. 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_preview__create_uid
msgid "Created by"
msgstr "Vytvoril"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Posledná modifikácia"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr "Názov"
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -227,6 +339,11 @@ msgid ""
"comment templates"
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"
#~ 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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Ustvaril"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnjič spremenjeno"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"only models allowed to set the coment template."
@ -228,6 +340,11 @@ msgid ""
"comment templates"
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"
#~ 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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -30,11 +38,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -75,16 +123,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -98,6 +154,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -106,6 +163,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -121,8 +179,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -131,14 +195,21 @@ msgstr "Zadnja izmjena"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -156,6 +227,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -166,6 +242,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -182,6 +278,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -189,6 +300,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Skapad av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Senast redigerad"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "สร้างโดย"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "รหัส"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Son değişiklik"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "Kimlik"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "En son güncelleme tarihi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"%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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Створив"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "Остання модифікація"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -28,11 +36,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -73,16 +121,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Được tạo bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -96,6 +152,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -104,6 +161,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -119,8 +177,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -129,14 +193,21 @@ msgstr "Sửa lần cuối vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -154,6 +225,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -164,6 +240,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -180,6 +276,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -187,6 +298,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "Tạo bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr ""
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "创建者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "ID"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最后修改时间"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "最后更新者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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"
"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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
@ -29,11 +37,51 @@ msgstr ""
msgid "Archived"
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
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "Bottom"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.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
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
@ -74,16 +122,24 @@ msgstr ""
#. 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_preview__create_uid
msgid "Created by"
msgstr "建立者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__create_date
msgid "Created on"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name
@ -97,6 +153,7 @@ msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id
@ -105,6 +162,7 @@ msgstr "編號"
#. 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_preview__model_ids
msgid "IR Model"
msgstr ""
@ -120,8 +178,14 @@ msgid ""
"If set, the comment template will be available only for the selected partner."
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update
@ -130,14 +194,21 @@ msgstr "最後修改:"
#. 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_preview__write_uid
msgid "Last Updated by"
msgstr "最後更新:"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__write_date
msgid "Last Updated on"
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
#: model:ir.model,name:base_comment_template.model_ir_model
msgid "Models"
@ -155,6 +226,11 @@ msgstr ""
msgid "Name/description of this comment template"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record
msgid "No Record"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids
msgid "Partner"
@ -165,6 +241,26 @@ msgstr ""
msgid "Position on document"
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
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence
msgid "Sequence"
@ -181,6 +277,21 @@ msgstr ""
msgid "Template"
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
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence
msgid "The smaller number = The higher priority"
@ -188,6 +299,7 @@ msgstr ""
#. 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_preview__model_ids
msgid ""
"This comment template will be available on this models. You can see here "
"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 "
"comment templates"
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 comment_template
from . import res_partner
from . import ir_model
from . import base_comment_template, comment_template, ir_model, res_partner

View File

@ -42,3 +42,17 @@ class CommentTemplate(models.AbstractModel):
domain = safe_eval(template.domain)
if not domain or record.filtered_domain(domain):
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

@ -16,16 +16,29 @@ 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:
<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)"/>
</p>
</t>
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>

View File

@ -1,3 +1,4 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0
access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1
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>
<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>&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>
<blockquote>
&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>
<p>&lt;/p&gt;</p>
<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>
<blockquote>
&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>
<p>&lt;/p&gt;</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)” /&gt;</dd>
</dl>
<p>&lt;/t&gt;</p>
<dl class="docutils">
<dt>&lt;t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == after_lines)” t-as=”comment_template_bottom”&gt;</dt>
<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>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 class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>

View File

@ -2,6 +2,7 @@
# Copyright 2021 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo.tests import common
from odoo.tools.misc import mute_logger
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.partner_id = cls.env.ref("base.res_partner_12")
cls.partner2_id = cls.env.ref("base.res_partner_10")
cls.ResPartnerTitle = cls.env["res.partner.title"]
cls.main_company = cls.env.ref("base.main_company")
cls.company = cls.env["res.company"].create({"name": "Test company"})
cls.before_template_id = cls.env["base.comment.template"].create(
@ -87,3 +89,61 @@ class TestCommentTemplate(common.SavepointCase):
self.assertTrue(
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("odoo.addons.base.models.ir_translation"):
self.env["base.language.install"].create(
{"lang": "ro_RO", "overwrite": True}
).lang_install()
with mute_logger("odoo.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"
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 class="oe_title">
<h1>

View File

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

View File

@ -0,0 +1,83 @@
from odoo import api, fields, models
from odoo.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",
defult="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" ?>
<odoo>
<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>
</odoo>