diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst new file mode 100644 index 0000000000..ddf0525c73 --- /dev/null +++ b/base_comment_template/README.rst @@ -0,0 +1,208 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +======================= +Base Comments Templates +======================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:fceb79cbad33f077c558feebc3fe3feb103dbb2f6d8d51c6548c301ebf07b4a9 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/19.0/base_comment_template + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-19-0/reporting-engine-19-0-base_comment_template + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add a new mixin class to define templates of comments to print on +documents. The comment templates can be defined like make templates, so +you can use variables from linked models. + +Two positions are available for the comments: + +- above document lines (before_lines) +- below document lines (after_lines) + +The template are general, and can be attached to any Model and based on +some domain defined in the template. You can define one default template +per Model and domain, which can be overwritten for any company and +partners. It has a priority field (smaller number = higher priority) + +In existing reports, if you add this line will get the comment template +if you created one like + +- ( or without any parameter) + +This module is the base module for following modules: + +- sale_comment_template +- purchase_comment_template +- account_comment_template +- stock_picking_comment_template + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +Go to *Settings > Technical > Reporting > Comment Templates* and start +designing you comment templates. + +This module is the base module for following modules: + +- sale_comment_template +- purchase_comment_template +- invoice_comment_template +- stock_picking_comment_template + +Usage +===== + +1. Go to *Settings* and activate the developer mode. +2. Go to *Settings > Technical > Reporting > Comment Templates*. +3. Create a new record. +4. Define the Company the template is linked or leave default for all + companies. +5. Define the Partner the template is linked or leave default for all + partners. +6. Define the Model, Domain the template is linked. +7. Define the Position where the template will be printed: + + - above document lines + - below document lines + +You should have at least one template with Default field set, if you +choose a Partner the template is deselected as a Default one. If you +create a new template with the same configuration (Model, Domain, +Position) and set it as Default, the previous one will be deselected as +a default one. + +The template is a html field which will be rendered just like a mail +template, so you can use variables like {{object}}, {{user}}, {{ctx}} to +add dynamic content. + +Change the report related to the model from configuration and add a +statement like: + +| +|
+ + + +| +|
+ + + +You should always use t-if since the method returns False if no template +is found. + +If you want to use Qweb templates, or different context, you can specify +it just like in mail.render.mixin with parameters: + +- engine: "inline_template", "qweb" or "qweb_view", +- add_context: dict with your own context, +- post_process: perform a post processing on rendered result + +so you could use it : + +| +|
+ + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Camptocamp + +Contributors +------------ + +- Xavier Jimenez +- Nicolas Bessi +- Yannick Vaucher +- Guewen Baconnier +- Simone Rubino +- `DynApps `__: + + - Raf Ven + +- `Druidoo `__: + + - Iván Todorovich + +- Pierre Verkest +- `NextERP Romania `__: + + - Fekete Mihai + +- `Tecnativa `__: + + - Carlos Roca + - Víctor Martínez + +- `Jarsa `__: + + - Alan Ramos + +- `Bloopark systems `__: + + - Achraf Mhadhbi + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py new file mode 100644 index 0000000000..f987065d30 --- /dev/null +++ b/base_comment_template/__init__.py @@ -0,0 +1,4 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models +from . import wizard diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py new file mode 100644 index 0000000000..3390996ff2 --- /dev/null +++ b/base_comment_template/__manifest__.py @@ -0,0 +1,22 @@ +# © 2013-2014 Nicolas Bessi (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Base Comments Templates", + "summary": "Add conditional mako template to any report" + "on models that inherits comment.template.", + "version": "19.0.0.0.0", + "category": "Reporting", + "website": "https://github.com/OCA/reporting-engine", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": ["base", "mail"], + "data": [ + "security/ir.model.access.csv", + "security/security.xml", + "wizard/base_comment_template_preview_views.xml", + "views/base_comment_template_view.xml", + "views/res_partner_view.xml", + ], +} diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po new file mode 100644 index 0000000000..0e84cad309 --- /dev/null +++ b/base_comment_template/i18n/am.po @@ -0,0 +1,360 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po new file mode 100644 index 0000000000..08bdf5c3c4 --- /dev/null +++ b/base_comment_template/i18n/ar.po @@ -0,0 +1,364 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "آخر تعديل في" diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot new file mode 100644 index 0000000000..6ac102872d --- /dev/null +++ b/base_comment_template/i18n/base_comment_template.pot @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected " +"company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected " +"partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po new file mode 100644 index 0000000000..a27e0d86c0 --- /dev/null +++ b/base_comment_template/i18n/bg.po @@ -0,0 +1,363 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Последно обновено на" diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po new file mode 100644 index 0000000000..2a9c0cadb4 --- /dev/null +++ b/base_comment_template/i18n/bs.po @@ -0,0 +1,364 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje mijenjano" diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po new file mode 100644 index 0000000000..b78c2d08fb --- /dev/null +++ b/base_comment_template/i18n/ca.po @@ -0,0 +1,365 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2025-12-09 18:42+0000\n" +"Last-Translator: Ricard \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10.4\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "Comentari" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Darrera modificació el" diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po new file mode 100644 index 0000000000..0e0677d419 --- /dev/null +++ b/base_comment_template/i18n/cs.po @@ -0,0 +1,363 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Naposled upraveno" diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po new file mode 100644 index 0000000000..c770a540c3 --- /dev/null +++ b/base_comment_template/i18n/da.po @@ -0,0 +1,363 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sidst ændret den" diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po new file mode 100644 index 0000000000..821e63655e --- /dev/null +++ b/base_comment_template/i18n/de.po @@ -0,0 +1,375 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2022-11-04 14:45+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "Archiviert" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Base Comment Preview" +msgstr "Textbaustein-Vorschau" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id +msgid "Base Comment Template" +msgstr "Textbaustein-Vorlagen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template_preview +msgid "Base Comment Template Preview" +msgstr "Textbaustein-Vorlagen-Vorschau" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Base Comment content" +msgstr "Textbaustein-Inhalt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body +msgid "Body" +msgstr "Inhalt" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "Suffix" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Choose a language:" +msgstr "Sprache wählen:" + +#. 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 "Beispiel wählen" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Textbaustein" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "Textbaustein-Vorlage" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Textbaustein-Vorlagen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "Textbaustein-Vorlage" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 "Verwerfen" + +#. module: base_comment_template +#: model:ir.model.fields,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 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "Filter-Domäne" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "IR Model" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" +"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für das " +"ausgewählte Unternehmen verfügbar." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" +"Wenn das Häkchen gesetzt ist, ist die Textbaustein-Vorlage nur für die " +"ausgewählten Partner verfügbar." + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 "Modell" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "Modelle" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Bezeichnung" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "Dies ist die Bezeichnung/Beschreibung der Textbaustein-Vorlage." + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record +msgid "No Record" +msgstr "Kein Eintrag" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "Partner" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +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 "Vorschau" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Preview of" +msgstr "Vorschau von" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "QWeb" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "Objekt-Referenz" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "Sequenz" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "Vorlage" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action +msgid "Template Preview" +msgstr "Vorlagen-Vorschau" + +#. 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 "Sprache für Vorlage-Vorschau" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "Je kleiner die Nummer, desto höher die Priorität." + +#. 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." +msgstr "" +"Die Textbaustein-Vorlage wird für diese Datenmodelle verfügbar sein. Es " +"werden nur erlaubte Datenmodell angezeigt." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" +"Die Textbaustein-Vorlage wird nur für die Objekte verfügbar sein, die dieser " +"Bedingung genügen." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" +"Dieses Feld entscheidet, wo im gedruckten Dokument der Textbaustein " +"angezeigt wird." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "Präfix" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zuletzt geändert am" diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po new file mode 100644 index 0000000000..1b13aeea71 --- /dev/null +++ b/base_comment_template/i18n/el_GR.po @@ -0,0 +1,361 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po new file mode 100644 index 0000000000..96d4320912 --- /dev/null +++ b/base_comment_template/i18n/en_GB.po @@ -0,0 +1,364 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 +msgid "Display Name" +msgstr "Display Name" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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 "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "" + +#. 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_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" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model_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__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.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" +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." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Last Modified on" diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po new file mode 100644 index 0000000000..9fd3afc4f3 --- /dev/null +++ b/base_comment_template/i18n/es.po @@ -0,0 +1,391 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-11-03 08:01+0000\n" +"PO-Revision-Date: 2023-09-07 16:37+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "" +"No records\n" +" " +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Activo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "Archivado" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Base Comment Preview" +msgstr "Vista previa de los comentarios sobre la base" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__base_comment_template_id +msgid "Base Comment Template" +msgstr "Plantilla de comentarios base" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template_preview +msgid "Base Comment Template Preview" +msgstr "Vista previa de la plantilla de comentarios base" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Base Comment content" +msgstr "Contenido del comentario de base" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__body +msgid "Body" +msgstr "Cuerpo" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "Abajo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Choose a language:" +msgstr "Elija un idioma:" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Choose an engine:" +msgstr "Elija un motor:" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Choose an example" +msgstr "Elija un ejemplo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentario" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "Plantilla de comentario" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Compañía" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +#: 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 "Descartar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__engine +msgid "Engine" +msgstr "Motor" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "Filtro de dominio" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__global_template +msgid "Global Template" +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 +msgid "ID" +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" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" +"Si se define, la plantilla de comentario va a estar disponible para las " +"compañías seleccionadas." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" +"Si se define, la plantilla de comentario va a estar disponible para los " +"contactos seleccionados." + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__inline_template +msgid "Inline Template" +msgstr "Plantilla en línea" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__inline_template +msgid "Inline template" +msgstr "Plantilla en línea" + +#. 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 "Modelo" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__models +msgid "Models" +msgstr "Modelos" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Nombre" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "Nombre de la plantilla de comentario" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__no_record +msgid "No Record" +msgstr "Sin registro" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posición en el documento" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Preview" +msgstr "Previsualizar" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "Preview of" +msgstr "Previsualización de" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb +msgid "QWeb" +msgstr "QWeb" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__engine__qweb_view +msgid "QWeb View" +msgstr "Vista de la QWeb" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template_preview__engine__qweb_view +msgid "QWeb view" +msgstr "Vista de la QWeb" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__resource_ref +msgid "Record reference" +msgstr "Referencia del registro" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "Comentarios de contactos que se pueden incluir en informes" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "Plantilla de comentario" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.base_comment_template_preview_action +msgid "Template Preview" +msgstr "Vista previa de la plantilla" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__engine +msgid "Template Preview Engine" +msgstr "Motor de previsualización de plantilla" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_preview__lang +msgid "Template Preview Language" +msgstr "Vista previa de la plantilla Idioma" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "Cuanto menor sea el número = mayor prioridad" + +#. 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." +msgstr "" +"Esta plantilla de comentarios estará disponible en estos modelos. Sólo vas a " +"ver los modelos autorizados para configurar la plantilla de comentarios." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" +"Esta plantilla de comentarios estará disponible solo para objetos que " +"satisfagan la condición" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__engine +msgid "" +"This field allows to select the engine to use for rendering the template." +msgstr "" +"Este campo permite seleccionar el motor a utilizar para renderizar la " +"plantilla." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" +"Este campo permite seleccionar la posición del comentario en los informes." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "Esta es la plantilla de texto que se insertará en los informes." + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "Superior" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" +"Si este modelo admite en los informes, añadir plantillas de comentarios." + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" +"base.comment.template para poner cabecera y pie de página en los informes " +"basados en las plantillas de comentarios creadas" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.base_comment_template_preview_form +msgid "record:" +msgstr "registro:" + +#, python-format +#~ msgid "Some model (%s) not found" +#~ msgstr "Algún modelo (%s) no se ha encontrado" + +#~ msgid "" +#~ " ( or without any parameter) + +This module is the base module for following modules: + +- sale_comment_template +- purchase_comment_template +- account_comment_template +- stock_picking_comment_template diff --git a/base_comment_template/readme/USAGE.md b/base_comment_template/readme/USAGE.md new file mode 100644 index 0000000000..8792b757a8 --- /dev/null +++ b/base_comment_template/readme/USAGE.md @@ -0,0 +1,52 @@ +1. Go to *Settings* and activate the developer mode. +2. Go to *Settings \> Technical \> Reporting \> Comment Templates*. +3. Create a new record. +4. Define the Company the template is linked or leave default for all + companies. +5. Define the Partner the template is linked or leave default for all + partners. +6. Define the Model, Domain the template is linked. +7. Define the Position where the template will be printed: + - above document lines + - below document lines + +You should have at least one template with Default field set, if you +choose a Partner the template is deselected as a Default one. If you +create a new template with the same configuration (Model, Domain, +Position) and set it as Default, the previous one will be deselected as +a default one. + +The template is a html field which will be rendered just like a mail +template, so you can use variables like {{object}}, {{user}}, {{ctx}} to +add dynamic content. + +Change the report related to the model from configuration and add a +statement like: + +\ +\
+ +\ + +\ +\
+ +\ + +You should always use t-if since the method returns False if no template +is found. + +If you want to use Qweb templates, or different context, you can specify +it just like in mail.render.mixin with parameters: + +- engine: "inline_template", "qweb" or "qweb_view", +- add_context: dict with your own context, +- post_process: perform a post processing on rendered result + +so you could use it : + +\ +\
+ +\ diff --git a/base_comment_template/security/ir.model.access.csv b/base_comment_template/security/ir.model.access.csv new file mode 100644 index 0000000000..acfeb4685f --- /dev/null +++ b/base_comment_template/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_base_comment_template,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 diff --git a/base_comment_template/security/security.xml b/base_comment_template/security/security.xml new file mode 100644 index 0000000000..8b56a7ceaa --- /dev/null +++ b/base_comment_template/security/security.xml @@ -0,0 +1,10 @@ + + + + Base comment multi-company + + + + ['|',('company_id','=',False),('company_id','in',company_ids)] + + diff --git a/base_comment_template/static/description/icon.png b/base_comment_template/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/base_comment_template/static/description/icon.png differ diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html new file mode 100644 index 0000000000..d6da6e30f9 --- /dev/null +++ b/base_comment_template/static/description/index.html @@ -0,0 +1,555 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Base Comments Templates

+ +

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

+

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

+

Two positions are available for the comments:

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

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

+

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

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

This module is the base module for following modules:

+
    +
  • sale_comment_template
  • +
  • purchase_comment_template
  • +
  • account_comment_template
  • +
  • stock_picking_comment_template
  • +
+

Table of contents

+ +
+

Configuration

+

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

+

This module is the base module for following modules:

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

Usage

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

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

+

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

+

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

+
+
<t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == +‘before_lines’)” t-as=”comment_template_top”>
+
<div t-out=”o.render_comment(comment_template_top)” />
+
+

</t>

+
+
<t t-foreach=”o.comment_template_ids.filtered(lambda x: x.position == +‘after_lines’)” t-as=”comment_template_bottom”>
+
<div t-out=”o.render_comment(comment_template_bottom)” />
+
+

</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: “inline_template”, “qweb” or “qweb_view”,
  • +
  • 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-out=”o.render_comment(comment_template_top, engine=’qweb’, +add_context={my dict}, postprocess=True)” />
+
+

</t>

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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

+

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

+

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

+
+
+
+
+ + diff --git a/base_comment_template/tests/__init__.py b/base_comment_template/tests/__init__.py new file mode 100644 index 0000000000..e198115e4e --- /dev/null +++ b/base_comment_template/tests/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from . import test_base_comment_template diff --git a/base_comment_template/tests/fake_models.py b/base_comment_template/tests/fake_models.py new file mode 100644 index 0000000000..209138b36b --- /dev/null +++ b/base_comment_template/tests/fake_models.py @@ -0,0 +1,24 @@ +# Copyright 2017 LasLabs Inc. +# Copyright 2018 ACSONE +# Copyright 2018 Camptocamp +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +from odoo import fields, models + + +class TestResUsers(models.Model): + _name = "test.res.users" + _description = "Test User" + _inherits = {"res.partner": "partner_id"} + _inherit = ["comment.template"] + + partner_id = fields.Many2one( + "res.partner", + required=True, + ondelete="restrict", + bypass_search_access=True, + index=True, + string="Related Partner", + help="Partner-related data of the user", + ) + login = fields.Char(required=True, help="Used to log into the system") diff --git a/base_comment_template/tests/test_base_comment_template.py b/base_comment_template/tests/test_base_comment_template.py new file mode 100644 index 0000000000..c5fb2a5d8f --- /dev/null +++ b/base_comment_template/tests/test_base_comment_template.py @@ -0,0 +1,217 @@ +# Copyright 2020 NextERP Romania SRL +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import Command +from odoo.exceptions import ValidationError +from odoo.orm.model_classes import add_to_registry +from odoo.tests import common +from odoo.tools.misc import mute_logger + + +class TestCommentTemplate(common.TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + + from .fake_models import TestResUsers + + add_to_registry(cls.registry, TestResUsers) + cls.registry._setup_models__(cls.env.cr, ["test.res.users"]) + cls.registry.init_models( + cls.env.cr, + ["test.res.users"], + {"models_to_check": True}, + ) + cls.addClassCleanup(cls.registry.__delitem__, "test.res.users") + + cls.test_user_obj = cls.env["ir.model"].search( + [("model", "=", "test.res.users")], limit=1 + ) + cls.user = cls.env["test.res.users"].create( + { + "name": "Test User", + "login": "test_user", + "email": "test_user@example.com", + } + ) + cls.user2 = cls.env["test.res.users"].create( + { + "name": "Test User 2", + "login": "test_user_2", + "email": "test_user_2@example.com", + } + ) + cls.partner_id = cls.env["res.partner"].create({"name": "Test Partner"}) + cls.partner2_id = cls.env["res.partner"].create({"name": "Test Partner 2"}) + cls.ResPartnerCategory = cls.env["res.partner.category"] + cls.main_company = cls.env.ref("base.main_company") + cls.company = cls.env["res.company"].create({"name": "Test company"}) + cls.before_template_id = cls.env["base.comment.template"].create( + { + "name": "Top template", + "text": "Text before lines", + "models": cls.test_user_obj.model, + "company_id": cls.company.id, + } + ) + cls.after_template_id = cls.env["base.comment.template"].create( + { + "name": "Bottom template", + "position": "after_lines", + "text": "Text after lines", + "models": cls.test_user_obj.model, + "company_id": cls.company.id, + } + ) + cls.user.partner_id.base_comment_template_ids = [ + (4, cls.before_template_id.id), + (4, cls.after_template_id.id), + ] + + def test_template_model_ids(self): + self.assertIn( + self.test_user_obj.model, self.before_template_id.mapped("model_ids.model") + ) + self.assertEqual(len(self.before_template_id.model_ids), 1) + self.assertIn( + self.test_user_obj.model, self.after_template_id.mapped("model_ids.model") + ) + self.assertEqual(len(self.after_template_id.model_ids), 1) + + def test_template_models_constrains(self): + with self.assertRaises(ValidationError): + self.env["base.comment.template"].create( + { + "name": "Custom template", + "text": "Text", + "models": "incorrect.model", + "company_id": self.company.id, + } + ) + + def test_template_display_name(self): + self.assertEqual( + self.before_template_id.display_name, + "Top template (Top)", + ) + self.assertEqual( + self.after_template_id.display_name, + "Bottom template (Bottom)", + ) + + def test_general_template(self): + # Need to force _compute because only trigger when partner_id have changed + self.user._compute_comment_template_ids() + # Check getting default comment template + self.assertTrue(self.before_template_id in self.user.comment_template_ids) + self.assertTrue(self.after_template_id in self.user.comment_template_ids) + + def test_global_template(self): + # Need to force _compute because only trigger when partner_id have changed + global_template = self.env["base.comment.template"].create( + { + "name": "Top template", + "text": "Text before lines", + "models": self.test_user_obj.model, + "company_id": self.company.id, + } + ) + self.user._compute_comment_template_ids() + # Check getting default comment template + self.assertNotIn(global_template, self.user.comment_template_ids) + global_template.global_template = True + self.user._compute_comment_template_ids() + self.assertIn(global_template, self.user.comment_template_ids) + + def test_partner_template(self): + self.partner2_id.base_comment_template_ids = [ + (4, self.before_template_id.id), + (4, self.after_template_id.id), + ] + self.assertTrue( + self.before_template_id in self.partner2_id.base_comment_template_ids + ) + self.assertTrue( + self.after_template_id in self.partner2_id.base_comment_template_ids + ) + + def test_partner_template_domain(self): + # Check getting the comment template if domain is set + self.partner2_id.base_comment_template_ids = [ + (4, self.before_template_id.id), + (4, self.after_template_id.id), + ] + self.before_template_id.domain = f"[('id', 'in', {self.user.ids})]" + self.assertTrue( + self.before_template_id in self.partner2_id.base_comment_template_ids + ) + self.assertTrue( + self.before_template_id not in self.partner_id.base_comment_template_ids + ) + + def test_render_comment_text(self): + expected_text = f"Test comment render {self.user.name}" + self.before_template_id.text = "Test comment render {{object.name}}" + self.assertEqual( + self.user.render_comment(self.before_template_id), expected_text + ) + + def test_render_comment_text_(self): + ro_RO_lang = ( + self.env["res.lang"] + .with_context(active_test=False) + .search([("code", "=", "ro_RO")]) + ) + with mute_logger("odoo.addons.base.models.ir_translation"): + self.env["base.language.install"].create( + {"overwrite": True, "lang_ids": [(6, 0, [ro_RO_lang.id])]} + ).lang_install() + + module = self.env.ref("base.module_test_translation_import") + export = self.env["base.language.export"].create( + {"lang": "ro_RO", "format": "po", "modules": [Command.set([module.id])]} + ) + export.act_getfile() + po_file = export.data + self.assertIsNotNone(po_file) + + partner_category = self.ResPartnerCategory.create({"name": "Ambassador"}) + # Adding translated terms + ctx = dict(lang="ro_RO") + partner_category.with_context(**ctx).write({"name": "Ambasador"}) + self.user.partner_id.category_id = partner_category + self.before_template_id.text = "Test comment render {{object.category_id.name}}" + + expected_en_text = "Test comment render Ambassador" + expected_ro_text = "Test comment render Ambasador" + 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() + ) diff --git a/base_comment_template/views/base_comment_template_view.xml b/base_comment_template/views/base_comment_template_view.xml new file mode 100644 index 0000000000..3dec351df4 --- /dev/null +++ b/base_comment_template/views/base_comment_template_view.xml @@ -0,0 +1,108 @@ + + + + base.comment.template.search + base.comment.template + + + + + + + + + + + + + + + + base.comment.template.search + base.comment.template + + + + + + + + + + + + + + + + base.comment.template.form + base.comment.template + +
+ +
+ +
+
+

+ +

+
+ + + + + + + + + + + + + + + + + +
+
+
+
+ + Comment Templates + ir.actions.act_window + base.comment.template + list,form + + + + +
diff --git a/base_comment_template/views/res_partner_view.xml b/base_comment_template/views/res_partner_view.xml new file mode 100644 index 0000000000..d0d6704227 --- /dev/null +++ b/base_comment_template/views/res_partner_view.xml @@ -0,0 +1,28 @@ + + + res.partner + + + + + + + + + + + + + + + + + + diff --git a/base_comment_template/wizard/__init__.py b/base_comment_template/wizard/__init__.py new file mode 100644 index 0000000000..9a0d64bbf6 --- /dev/null +++ b/base_comment_template/wizard/__init__.py @@ -0,0 +1 @@ +from . import base_comment_template_preview diff --git a/base_comment_template/wizard/base_comment_template_preview.py b/base_comment_template/wizard/base_comment_template_preview.py new file mode 100644 index 0000000000..0146390757 --- /dev/null +++ b/base_comment_template/wizard/base_comment_template_preview.py @@ -0,0 +1,85 @@ +from odoo import api, fields, models +from odoo.tools.safe_eval import safe_eval + +from odoo.addons.base.models.res_partner import _lang_get + + +class BaseCommentTemplatePreview(models.TransientModel): + _name = "base.comment.template.preview" + _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 default_get(self, fields): + result = super().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"] = f"{model.model},{res.id}" + return result + + base_comment_template_id = fields.Many2one( + "base.comment.template", required=True, ondelete="cascade" + ) + lang = fields.Selection(_lang_get, string="Template Preview Language") + engine = fields.Selection( + [ + ("inline_template", "Inline template"), + ("qweb", "QWeb"), + ("qweb_view", "QWeb view"), + ], + string="Template Preview Engine", + default="inline_template", + ) + model_ids = fields.Many2many( + "ir.model", related="base_comment_template_id.model_ids" + ) + model_id = fields.Many2one("ir.model") + body = fields.Char(compute="_compute_base_comment_template_fields") + resource_ref = fields.Reference( + string="Record reference", selection="_selection_target_model" + ) + no_record = fields.Boolean(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 diff --git a/base_comment_template/wizard/base_comment_template_preview_views.xml b/base_comment_template/wizard/base_comment_template_preview_views.xml new file mode 100644 index 0000000000..b6217df3f3 --- /dev/null +++ b/base_comment_template/wizard/base_comment_template_preview_views.xml @@ -0,0 +1,63 @@ + + + + base.comment.template.preview.form + base.comment.template.preview + +
+

Preview of + +

+ + +
+ Choose an example + + record: + +
+ + No records + +
+
+

Choose a language: + +

+

Choose an engine: + +

+
+ + + Template Preview + base.comment.template.preview + ir.actions.act_window + form + + new + {'default_base_comment_template_id':active_id} + +