Merge PR #481 into 13.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2021-02-16 14:27:36 +00:00
92 changed files with 10479 additions and 0 deletions

View File

@@ -0,0 +1,161 @@
=======================
Base Comments Templates
=======================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
:target: https://github.com/OCA/reporting-engine/tree/13.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-13-0/reporting-engine-13-0-base_comment_template
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/143/13.0
:alt: Try me on Runbot
|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
* <span t-raw="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
* invoice_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
=====
#. Go to *Settings* and activate the developer mode.
#. Go to *Settings > Technical > Reporting > Comment Templates*.
#. Create a new record.
#. Define the Company the template is linked or leave default for all companies.
#. Define the Partner the template is linked or leave default for all partners.
#. Define the Model, Domain the template is linked.
#. 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:
<p t-if="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)">
<span t-raw="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/>
</p>
<p t-if="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)">
<span t-raw="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/>
</p>
You should always use t-if since the method returns False if no template is found.
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* Camptocamp
Contributors
~~~~~~~~~~~~
* Xavier Jimenez <xavier.jimenez@qubiq.es>
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
* Simone Rubino <simone.rubino@agilebg.com>
* `DynApps <https://www.dynapps.be>`_:
* Raf Ven <raf.ven@dynapps.be>
* `Druidoo <https://www.druidoo.io>`_:
* Iván Todorovich <ivan.todorovich@druidoo.io>
* `NextERP Romania <https://www.nexterp.ro>`_:
* Fekete Mihai <feketemihai@nexterp.ro>
* `Tecnativa <https://www.tecnativa.com>`_:
* Carlos Roca
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 <https://github.com/OCA/reporting-engine/tree/13.0/base_comment_template>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

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

View File

@@ -0,0 +1,21 @@
# © 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": "13.0.1.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",
"views/base_comment_template_view.xml",
"views/res_partner_view.xml",
],
}

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "أنشئ في"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "اسم العرض"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "المعرف"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,225 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-09 09:55+0000\n"
"PO-Revision-Date: 2021-02-09 09:55+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Archived"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model_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_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_base_comment_template_tree
#: 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
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain
msgid "Filter Domain"
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_comment_template__id
msgid "ID"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__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,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model
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
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__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:ir.model.fields,field_description:base_comment_template.field_base_comment_template__priority
msgid "Priority"
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
#: code:addons/base_comment_template/models/base_comment_template.py:0
#, python-format
msgid ""
"There are other records with same models, priority, domain and position."
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__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__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,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:ir.model.fields,help:base_comment_template.field_base_comment_template__priority
msgid "the highest priority = the smallest number"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Създадено от"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Създадено на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Име за Показване"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
"Last-Translator: Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Comentari "
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creat per"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creat el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Veure el nom"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Darrera Actualització el"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Vytvořeno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Oprettet af"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Oprettet den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Vist navn"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "Id"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Rudolf Schnapka <rs@techno-flex.de>, 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: Rudolf Schnapka <rs@techno-flex.de>, 2017\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Nach Positionen"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Vorlage für Bemerkung"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Vor Positionen"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Bemerkung"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Vorlagen zu Bemerkungen"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Bemerkungszusammenfassung"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
#, fuzzy
#| msgid "Comment Templates"
msgid "Conditions template"
msgstr "Vorlagen zu Bemerkungen"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Erstellt von"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Erstellt am:"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Anzeigename"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zuletzt geändert am"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zuletzt aktualisiert von"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Stelle"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Position im Dokument"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "Κωδικός"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
"teams/23907/en_GB/)\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Created by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Created on"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Display Name"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,252 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# enjolras <yo@miguelrevilla.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-09 09:55+0000\n"
"PO-Revision-Date: 2021-02-09 11:21+0100\n"
"Last-Translator: Carlos <carlos.roca@tecnativa.com>\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: Poedit 2.0.6\n"
#. 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:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines
msgid "After lines"
msgstr "Después de las líneas"
#. 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:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines
msgid "Before lines"
msgstr "Antes de las líneas"
#. 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_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_base_comment_template_tree
#: 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
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__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__id
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__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,field_description:base_comment_template.field_base_comment_template____last_update
#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última modificación por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última modificación el"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_ir_model
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
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__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:ir.model.fields,field_description:base_comment_template.field_base_comment_template__priority
msgid "Priority"
msgstr "Prioridad"
#. 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
#: code:addons/base_comment_template/models/base_comment_template.py:0
#, python-format
msgid ""
"There are other records with same models, priority, domain and position."
msgstr ""
"Hay otros registros con los mismos datos en modelo, prioridad, dominio y "
"posición."
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__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__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,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:ir.model.fields,help:base_comment_template.field_base_comment_template__priority
msgid "the highest priority = the smallest number"
msgstr "Mayor prioridad = número menor"
#~ msgid "Comment summary"
#~ msgstr "Índice de comentarios"
#, fuzzy
#~| msgid "Comment Templates"
#~ msgid "Conditions template"
#~ msgstr "Plantillas de comentarios"
#~ msgid "Position"
#~ msgstr "Posició"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
"es_CL/)\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
"es_CO/)\n"
"Language: es_CO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre Público"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Actualizado"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
"teams/23907/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
"teams/23907/es_DO/)\n"
"Language: es_DO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
"es_EC/)\n"
"Language: es_EC\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre para mostrar"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
"es_MX/)\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre desplegado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
"es_PE/)\n"
"Language: es_PE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
"es_PY/)\n"
"Language: es_PY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
"teams/23907/es_VE/)\n"
"Language: es_VE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Mostrar nombre"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Loonud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Loodud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Näidatav nimi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Nork sortua"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Created on"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Izena erakutsi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "ایجاد شده در"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "نام نمایشی"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "شناسه"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Luonut"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Luotu"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nimi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Viimeksi päivitetty"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Après les lignes"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Modèle de textes de commentaires"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Avant les lignes"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Commentaire"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Modèles de commentaires"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Nom"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
#, fuzzy
#| msgid "Comment Templates"
msgid "Conditions template"
msgstr "Modèles de commentaires"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Dernière mise-à-jour le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Dernière mise-à-jour par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Dernière mise-à-jour le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Position"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Position sur le document"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
"fr_CA/)\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Afficher le nom"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "Identifiant"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
"teams/23907/fr_CH/)\n"
"Language: fr_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Modifié le"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2019-02-06 14:50+0000\n"
"Last-Translator: Marta Vázquez Rodríguez <vazrodmar@gmail.com>\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.4\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Despois das liñas"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Modelo do comentario base"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Antes das liñas"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Comentario"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Modelos de comentarios"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Índice de comentarios"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
#, fuzzy
#| msgid "Comment Templates"
msgid "Conditions template"
msgstr "Modelos de comentarios"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nome mostrado"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última modificación"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Posición"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Posición no documento"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
"gl_ES/)\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "נוצר על ידי"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "נוצר ב-"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "השם המוצג"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "מזהה"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2020-03-05 16:13+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.10\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr "Aktivan"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Iza linija"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Osnovni Predložak komentara"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Ispred linija"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Komentar"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Predlošci komentara"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Sažetak komentara"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr "Tvrtka"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr "Predložak uvjeta"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr "Kontakt"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Stvorio/la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Stvoreno dana"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zadnju izmjenu izvršio/la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr "Naziv"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Pozicija"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Pozicija na dokumentu"

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
"hr_HR/)\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Naziv"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Készítette"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Név megjelenítése"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve "
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Dibuat oleh"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Dibuat pada"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nama Tampilan"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Paolo Valier <paolo.valier@hotmail.it>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Coomento"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creato da"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creato il"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nome da visualizzare"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Ultima Modifica il"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultimo aggiornamento il"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Posizione"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2019-07-05 04:42+0000\n"
"Last-Translator: Yoshi Tashiro <tashiro@roomsfor.hk>\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.7.1\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "明細行後"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Base comment template"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "明細行前"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "コメント"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "コメントテンプレート"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "コメントサマリ"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
#, fuzzy
#| msgid "Comment Templates"
msgid "Conditions template"
msgstr "コメントテンプレート"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "作成者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "作成日"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "表示名"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "最終更新日"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "最終更新者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "最終更新日"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "位置"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "ドキュメント上の位置"

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "작성자"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "작성일"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "표시 이름"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "최근 수정"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Vaizduojamas pavadinimas"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
"teams/23907/lt_LT/)\n"
"Language: lt_LT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Izveidoja"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Izveidots"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Pēdējās izmaiņas"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Креирано од"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Креирано на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Прикажи име"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Үүсгэгч"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Дэлгэцийн Нэр"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
"nb/)\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Opprettet av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Opprettet den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Visnings navn"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
"teams/23907/nb_NO/)\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Laget av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Laget den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Vis navn"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Sist oppdatert den"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Opmerking"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Te tonen naam"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
"nl_BE/)\n"
"Language: nl_BE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Gemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Gemaakt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Schermnaam"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Peter Hageman <hageman.p@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-30 23:41+0000\n"
"PO-Revision-Date: 2017-06-30 23:41+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Weergavenaam"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Utworzone przez"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Utworzono"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Wyświetlana nazwa "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2020-02-29 20:13+0000\n"
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 3.10\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr "Ativo"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Após as linhas"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Modelo de Comentários Base"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Antes das Linhas"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Comentário"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Modelos de Comentários"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Resumo de comentário"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr "Empresa"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr "Modelos de condições"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr "Contacto"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nome"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr "Se assinalado, só estará disponível para esta empresa"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Modificado a última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr "Nome"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Posição"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Posição no documento"

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2019-11-24 19:57+0000\n"
"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
"23907/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.8\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr "Ativo"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Depois das linhas"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Modelo de comentário Base"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Antes das linhas"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Comentário"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Modelos de comentários"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Índice de comentários"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr "Empresa"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr "Modelos de condições"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr "Contato"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nome para Mostrar"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr "Se definido, ele estará disponível apenas para esta empresa"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr "Nome"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Posição"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Posição no documento"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
"teams/23907/pt_PT/)\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nome a Apresentar"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Creat de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Creat la"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Nume Afişat"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Ultima actualizare la"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Создано"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Создан"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Последний раз обновлено"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Vytvoril"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Vytvorené"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Zobraziť meno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-16 11:59+0000\n"
"PO-Revision-Date: 2017-05-16 11:59+0000\n"
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>, 2017\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr "Po postavkah"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr "Osnovna predloga za komentarje"
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr "Pred postavkami"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr "Komentar"
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr "Predloge komentarjev"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr "Povzetek komentarjev"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
#, fuzzy
#| msgid "Comment Templates"
msgid "Conditions template"
msgstr "Predloge komentarjev"
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Ustvaril"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Ustvarjeno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Prikazni naziv"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr "Položaj"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr "Pozicija na dokumentu"

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr ""
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,130 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
"sr@latin/)\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Ime za prikaz"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Skapad av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Skapad den"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Visa namn"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "สร้างโดย"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "สร้างเมื่อ"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "รหัส"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Oluşturuldu"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Görünen İsim"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Son güncelleme"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
"tr_TR/)\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Görünen ad"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "Kimlik"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Створив"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Дата створення"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Назва для відображення"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Останнє оновлення"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,128 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Được tạo bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Được tạo vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "Tên hiển thị"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
"teams/23907/vi_VN/)\n"
"Language: vi_VN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "Tạo bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "Tạo vào"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
"zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "创建者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "创建时间"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "显示名称"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "ID"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "最后更新者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "上次更新日期"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_comment_template
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
"zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active
msgid "Active"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "After lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_base_comment_template
msgid "Base comment template"
msgstr ""
#. module: base_comment_template
#: selection:base.comment.template,position:0
msgid "Before lines"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Comment"
msgstr ""
#. module: base_comment_template
#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search
msgid "Comment Templates"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name
msgid "Comment summary"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id
msgid "Company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id
#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id
msgid "Conditions template"
msgstr ""
#. module: base_comment_template
#: model:ir.model,name:base_comment_template.model_res_partner
msgid "Contact"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid
msgid "Created by"
msgstr "建立者"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date
msgid "Created on"
msgstr "建立於"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name
msgid "Display Name"
msgstr "顯示名稱"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id
msgid "ID"
msgstr "編號"
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id
msgid "If set, it'll only be available for this company"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update
msgid "Last Modified on"
msgstr "最後修改:"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid
msgid "Last Updated by"
msgstr "最後更新:"
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date
msgid "Last Updated on"
msgstr "最後更新於"
#. module: base_comment_template
#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form
msgid "Name"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position
msgid "Position"
msgstr ""
#. module: base_comment_template
#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position
msgid "Position on document"
msgstr ""

View File

@@ -0,0 +1,28 @@
# Copyright 2020 NextERP Romania SRL
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from openupgradelib import openupgrade
@openupgrade.migrate()
def migrate(env, version):
# Not tested
properties = env["ir.property"].search(
[
(
"fields_id",
"=",
env.ref("base.field_res_partner_property_comment_template_id").id,
)
]
)
if properties:
for template in properties.mapped("value_reference"):
if not template:
continue
template_id = template.split(",")[-1]
if template_id:
template = env["base.comment.template"].browse(template_id)
part_prop = properties.filtered(lambda p: p.value_reference == template)
template.partner_ids = [
(prop["res_id"] or "").split(",")[-1] for prop in part_prop
]

View File

@@ -0,0 +1,3 @@
from . import base_comment_template
from . import res_partner
from . import ir_model

View File

@@ -0,0 +1,179 @@
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
# Copyright 2020 NextERP Romania SRL
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from lxml import etree
from odoo import _, api, fields, models
from odoo.exceptions import ValidationError
from odoo.tools.safe_eval import safe_eval
class CommentTemplate(models.AbstractModel):
_name = "comment.template"
_description = (
"base.comment.template to put header and footer "
"in reports based on created comment templates"
)
def get_comment_template(
self, position="before_lines", company_id=False, partner_id=False
):
""" Method that is called from report xml and is returning the
position template as a html if exists
"""
self.ensure_one()
if not company_id:
company_id = self.env.company.id
present_model_id = self.env["ir.model"].search([("model", "=", self._name)])
default_dom = [
("model_ids", "in", present_model_id.id),
("position", "=", position),
]
lang = False
if partner_id and "partner_id" in self._fields:
default_dom += [
"|",
("partner_ids", "=", False),
("partner_ids", "in", partner_id),
]
lang = self.env["res.partner"].browse(partner_id).lang
if company_id and "company_id" in self._fields:
if partner_id and "partner_id" in self._fields:
default_dom.insert(-3, "&")
default_dom += [
"|",
("company_id", "=", company_id),
("company_id", "=", False),
]
templates = self.env["base.comment.template"].search(
default_dom, order="priority"
)
if lang:
templates = templates.with_context({"lang": lang})
template = False
if templates:
for templ in templates:
if self in self.search(safe_eval(templ.domain or "[]")):
template = templ
break
if not template:
return ""
return self.env["mail.template"]._render_template(
template.text, self._name, self.id, post_process=True
)
class BaseCommentTemplate(models.Model):
"""Comment templates printed on reports"""
_name = "base.comment.template"
_description = "Comments Template"
active = fields.Boolean(default=True)
position = fields.Selection(
string="Position on document",
selection=[("before_lines", "Before lines"), ("after_lines", "After lines")],
required=True,
default="before_lines",
help="This field allows to select the position of the comment on reports.",
)
name = fields.Char(
string="Name",
translate=True,
required=True,
help="Name/description of this comment template",
)
text = fields.Html(
string="Template",
translate=True,
required=True,
sanitize=False,
help="This is the text template that will be inserted into reports.",
)
company_id = fields.Many2one(
"res.company",
string="Company",
ondelete="cascade",
index=True,
help="If set, the comment template will be available only for the selected "
"company.",
)
partner_ids = fields.Many2many(
comodel_name="res.partner",
string="Partner",
ondelete="cascade",
help="If set, the comment template will be available only for the selected "
"partner.",
)
model_ids = fields.Many2many(
comodel_name="ir.model",
string="IR Model",
ondelete="cascade",
required=True,
help="This comment template will be available on this models. "
"You can see here only models allowed to set the coment template.",
)
domain = fields.Char(
"Filter Domain",
required=True,
default="[]",
help="This comment template will be available only for objects "
"that satisfy the condition",
)
priority = fields.Integer(
default=10, copy=False, help="the highest priority = the smallest number",
)
@api.constrains("domain", "priority", "model_ids", "position")
def _check_partners_in_company_id(self):
templates = self.search([])
for record in self:
other_template_same_models_and_priority = templates.filtered(
lambda t: t.priority == record.priority
and set(record.model_ids).intersection(record.model_ids)
and t.domain == record.domain
and t.position == record.position
and t.id != record.id
)
if other_template_same_models_and_priority:
raise ValidationError(
_(
"There are other records with same models, priority, "
"domain and position."
)
)
@api.model
def fields_view_get(
self, view_id=None, view_type="form", toolbar=False, submenu=False
):
# modify the form view of base_commnent_template
# Add domain on model_id to get only models that have a report set
# and those whom have inherited this model
res = super().fields_view_get(
view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu
)
if view_type == "form":
doc = etree.XML(res["arch"])
for node in doc.xpath("//field[@name='model_ids']"):
report_models = self.env["ir.actions.report"].search([]).mapped("model")
model_ids = (
self.env["ir.model"]
.search(
[
("model", "in", report_models),
("is_comment_template", "=", True),
"!",
("name", "=like", "ir.%"),
]
)
.ids
)
model_filter = "[('id','in'," + str(model_ids) + ")]"
node.set("domain", model_filter)
res["arch"] = etree.tostring(doc, encoding="unicode")
return res

View File

@@ -0,0 +1,33 @@
# Copyright 2020 NextERP Romania SRL
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import api, fields, models
class IrModel(models.Model):
_inherit = "ir.model"
is_comment_template = fields.Boolean(
string="Comment Template",
default=False,
help="Whether this model supports in reports to add comment templates.",
)
def _reflect_model_params(self, model):
vals = super(IrModel, self)._reflect_model_params(model)
vals["is_comment_template"] = issubclass(
type(model), self.pool["comment.template"]
)
return vals
@api.model
def _instanciate(self, model_data):
model_class = super(IrModel, self)._instanciate(model_data)
if (
model_data.get("is_comment_template")
and model_class._name != "comment.template"
):
parents = model_class._inherit or []
parents = [parents] if isinstance(parents, str) else parents
model_class._inherit = parents + ["comment.template"]
return model_class

View File

@@ -0,0 +1,14 @@
# Copyright 2020 NextERP Romania SRL
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class ResPartner(models.Model):
_inherit = "res.partner"
base_comment_template_ids = fields.Many2many(
comodel_name="base.comment.template",
string="Comment Templates",
help="Specific partner comments that can be included in reports",
)

View File

@@ -0,0 +1,8 @@
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

View File

@@ -0,0 +1,20 @@
* Xavier Jimenez <xavier.jimenez@qubiq.es>
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
* Simone Rubino <simone.rubino@agilebg.com>
* `DynApps <https://www.dynapps.be>`_:
* Raf Ven <raf.ven@dynapps.be>
* `Druidoo <https://www.druidoo.io>`_:
* Iván Todorovich <ivan.todorovich@druidoo.io>
* `NextERP Romania <https://www.nexterp.ro>`_:
* Fekete Mihai <feketemihai@nexterp.ro>
* `Tecnativa <https://www.tecnativa.com>`_:
* Carlos Roca

View File

@@ -0,0 +1,23 @@
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-raw="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
* invoice_comment_template
* stock_picking_comment_template

View File

@@ -0,0 +1,31 @@
#. Go to *Settings* and activate the developer mode.
#. Go to *Settings > Technical > Reporting > Comment Templates*.
#. Create a new record.
#. Define the Company the template is linked or leave default for all companies.
#. Define the Partner the template is linked or leave default for all partners.
#. Define the Model, Domain the template is linked.
#. 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:
<p t-if="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)">
<span t-raw="o.get_comment_template('before_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/>
</p>
<p t-if="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)">
<span t-raw="o.get_comment_template('after_lines', o.company_id.id, o.partner_id and o.partner_id.id or False)"/>
</p>
You should always use t-if since the method returns False if no template is found.

View File

@@ -0,0 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0
access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_base_comment_template_user access_base_comment_template_user model_base_comment_template 1 0 0 0
3 access_base_comment_template access_base_comment_template no one model_base_comment_template base.group_no_one 1 1 1 1

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record model="ir.rule" id="rule_multicompany">
<field name="name">Base comment multi-company</field>
<field name="model_id" ref="model_base_comment_template" />
<field name="global" eval="True" />
<field name="domain_force">
['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
</odoo>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -0,0 +1,501 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
<title>Base Comments Templates</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="base-comments-templates">
<h1 class="title">Base Comments Templates</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/13.0/base_comment_template"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/reporting-engine-13-0/reporting-engine-13-0-base_comment_template"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/143/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>Add a new mixin class to define templates of comments to print on documents.
The comment templates can be defined like make templates, so you can use variables from linked models.</p>
<p>Two positions are available for the comments:</p>
<ul class="simple">
<li>above document lines (before_lines)</li>
<li>below document lines (after_lines)</li>
</ul>
<p>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)</p>
<p>In existing reports, if you add this line will get the comment template if you created one like</p>
<ul class="simple">
<li>&lt;span t-raw=”o.get_comment_template(position,company_id=o.company_id, partner_id=o.parnter_id )”/&gt; ( or without any parameter)</li>
</ul>
<p>This module is the base module for following modules:</p>
<ul class="simple">
<li>sale_comment_template</li>
<li>purchase_comment_template</li>
<li>invoice_comment_template</li>
<li>stock_picking_comment_template</li>
</ul>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#configuration" id="id1">Configuration</a></li>
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="configuration">
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
<p>Go to <em>Settings &gt; Technical &gt; Reporting &gt; Comment Templates</em> and start designing you comment templates.</p>
<p>This module is the base module for following modules:</p>
<ul class="simple">
<li>sale_comment_template</li>
<li>purchase_comment_template</li>
<li>invoice_comment_template</li>
<li>stock_picking_comment_template</li>
</ul>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
<ol class="arabic simple">
<li>Go to <em>Settings</em> and activate the developer mode.</li>
<li>Go to <em>Settings &gt; Technical &gt; Reporting &gt; Comment Templates</em>.</li>
<li>Create a new record.</li>
<li>Define the Company the template is linked or leave default for all companies.</li>
<li>Define the Partner the template is linked or leave default for all partners.</li>
<li>Define the Model, Domain the template is linked.</li>
<li>Define the Position where the template will be printed:<ul>
<li>above document lines</li>
<li>below document lines</li>
</ul>
</li>
</ol>
<p>You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one.
If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.</p>
<p>The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content.</p>
<p>Change the report related to the model from configuration and add a statement like:</p>
<p>&lt;p t-if=”o.get_comment_template(before_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”&gt;</p>
<blockquote>
&lt;span t-raw=”o.get_comment_template(before_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”/&gt;</blockquote>
<p>&lt;/p&gt;</p>
<p>&lt;p t-if=”o.get_comment_template(after_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”&gt;</p>
<blockquote>
&lt;span t-raw=”o.get_comment_template(after_lines, o.company_id.id, o.partner_id and o.partner_id.id or False)”/&gt;</blockquote>
<p>&lt;/p&gt;</p>
<p>You should always use t-if since the method returns False if no template is found.</p>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/reporting-engine/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20base_comment_template%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
<ul class="simple">
<li>Camptocamp</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
<ul class="simple">
<li>Xavier Jimenez &lt;<a class="reference external" href="mailto:xavier.jimenez&#64;qubiq.es">xavier.jimenez&#64;qubiq.es</a>&gt;</li>
<li>Nicolas Bessi &lt;<a class="reference external" href="mailto:nicolas.bessi&#64;camptocamp.com">nicolas.bessi&#64;camptocamp.com</a>&gt;</li>
<li>Yannick Vaucher &lt;<a class="reference external" href="mailto:yannick.vaucher&#64;camptocamp.com">yannick.vaucher&#64;camptocamp.com</a>&gt;</li>
<li>Guewen Baconnier &lt;<a class="reference external" href="mailto:guewen.baconnier&#64;camptocamp.com">guewen.baconnier&#64;camptocamp.com</a>&gt;</li>
<li>Simone Rubino &lt;<a class="reference external" href="mailto:simone.rubino&#64;agilebg.com">simone.rubino&#64;agilebg.com</a>&gt;</li>
<li><a class="reference external" href="https://www.dynapps.be">DynApps</a>:<ul>
<li>Raf Ven &lt;<a class="reference external" href="mailto:raf.ven&#64;dynapps.be">raf.ven&#64;dynapps.be</a>&gt;</li>
</ul>
</li>
<li><a class="reference external" href="https://www.druidoo.io">Druidoo</a>:<ul>
<li>Iván Todorovich &lt;<a class="reference external" href="mailto:ivan.todorovich&#64;druidoo.io">ivan.todorovich&#64;druidoo.io</a>&gt;</li>
</ul>
</li>
<li><a class="reference external" href="https://www.nexterp.ro">NextERP Romania</a>:<ul>
<li>Fekete Mihai &lt;<a class="reference external" href="mailto:feketemihai&#64;nexterp.ro">feketemihai&#64;nexterp.ro</a>&gt;</li>
</ul>
</li>
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
<li>Carlos Roca</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/13.0/base_comment_template">OCA/reporting-engine</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,2 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import test_base_comment_template

View File

@@ -0,0 +1,34 @@
# 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 models
def setup_test_model(env, model_cls):
"""Pass a test model class and initialize it.
Courtesy of SBidoul from https://github.com/OCA/mis-builder :)
"""
model_cls._build_model(env.registry, env.cr)
env.registry.setup_models(env.cr)
env.registry.init_models(
env.cr, [model_cls._name], dict(env.context, update_custom_fields=True)
)
def teardown_test_model(env, model_cls):
"""Pass a test model class and deinitialize it.
Courtesy of SBidoul from https://github.com/OCA/mis-builder :)
"""
if not getattr(model_cls, "_teardown_no_delete", False):
del env.registry.models[model_cls._name]
env.registry.setup_models(env.cr)
class ResUsers(models.Model):
_name = "res.users"
_inherit = ["res.users", "comment.template"]
_teardown_no_delete = True

View File

@@ -0,0 +1,168 @@
# Copyright 2020 NextERP Romania SRL
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from lxml import etree
from odoo.tests import common
from .fake_models import ResUsers, setup_test_model, teardown_test_model
class TestCommentTemplate(common.SavepointCase):
at_install = False
post_install = True
@classmethod
def setUpClass(cls):
super().setUpClass()
setup_test_model(cls.env, ResUsers)
cls.user_obj = cls.env["ir.model"].search([("model", "=", "res.users")])
cls.user = cls.env.ref("base.user_demo")
cls.user2 = cls.env.ref("base.demo_user0")
cls.partner_id = cls.env.ref("base.res_partner_12")
cls.partner2_id = cls.env.ref("base.res_partner_10")
cls.company = cls.env["res.company"].search([], limit=1)
cls.before_template_id = cls.env["base.comment.template"].create(
{
"name": "before_lines",
"text": "Text before lines",
"model_ids": [(6, 0, cls.user_obj.ids)],
"priority": 5,
}
)
cls.after_template_id = cls.env["base.comment.template"].create(
{
"name": "after_lines",
"position": "after_lines",
"text": "Text after lines",
"model_ids": [(6, 0, cls.user_obj.ids)],
"priority": 6,
}
)
@classmethod
def tearDownClass(cls):
teardown_test_model(cls.env, ResUsers)
super(TestCommentTemplate, cls).tearDownClass()
def test_general_template(self):
# Check getting default comment template
templ = self.user.get_comment_template("before_lines")
self.assertEqual(templ, "Text before lines")
templ = self.user.get_comment_template("after_lines")
self.assertEqual(templ, "Text after lines")
def test_company_general_template(self):
# Check getting default comment template company
self.before_template_id.company_id = self.company
templ = self.user.get_comment_template("before_lines")
self.assertEqual(templ, "")
templ = self.user.get_comment_template(
"before_lines", company_id=self.company.id
)
self.assertEqual(templ, "Text before lines")
templ = self.user.get_comment_template("after_lines")
self.assertEqual(templ, "Text after lines")
def test_partner_template(self):
# Check getting the comment template if partner is set
self.before_template_id.partner_ids = self.partner2_id.ids
templ = self.user.get_comment_template(
"before_lines", partner_id=self.partner2_id.id
)
self.assertEqual(templ, "Text before lines")
templ = self.user.get_comment_template(
"before_lines", partner_id=self.partner_id.id
)
self.assertEqual(templ, "")
templ = self.user.get_comment_template("after_lines")
self.assertEqual(templ, "Text after lines")
def test_partner_template_domain(self):
# Check getting the comment template if domain is set
self.before_template_id.partner_ids = self.partner2_id.ids
self.before_template_id.domain = "[('id', 'in', %s)]" % self.user.ids
templ = self.user.get_comment_template(
"before_lines", partner_id=self.partner2_id.id
)
self.assertEqual(templ, "Text before lines")
templ = self.user2.get_comment_template(
"before_lines", partner_id=self.partner_id.id
)
self.assertEqual(templ, "")
def test_company_partner_template_domain(self):
# Check getting the comment template with company and if domain is set
self.before_template_id.company_id = self.company
templ = self.user.get_comment_template("before_lines")
self.assertEqual(templ, "")
templ = self.user.get_comment_template(
"before_lines", company_id=self.company.id
)
self.assertEqual(templ, "Text before lines")
self.before_template_id.partner_ids = self.partner2_id.ids
self.before_template_id.domain = "[('id', 'in', %s)]" % self.user.ids
templ = self.user.get_comment_template(
"before_lines", partner_id=self.partner2_id.id
)
self.assertEqual(templ, "")
self.before_template_id.company_id = self.env.user.company_id
templ = self.user.get_comment_template(
"before_lines", partner_id=self.partner2_id.id
)
self.assertEqual(templ, "Text before lines")
templ = self.user2.get_comment_template(
"before_lines", partner_id=self.partner2_id.id
)
self.assertEqual(templ, "")
def test_priority(self):
# Check setting default template will change previous record default
new_template = self.env["base.comment.template"].create(
{
"name": "before_lines",
"text": "Text before lines 1",
"model_ids": [(6, 0, self.user_obj.ids)],
"priority": 2,
}
)
self.assertEqual(new_template.text, "Text before lines 1")
def test_check_partners_in_company_id(self):
""" should rise any error because exist the same model,
domain, position and priority"""
with self.assertRaises(Exception) as context:
self.before_template_id_2 = self.env["base.comment.template"].create(
{
"name": "before_lines",
"text": "Text before lines",
"model_ids": [(6, 0, self.user_obj.ids)],
"priority": 5,
}
)
self.assertTrue(
"There are other records with same models, priority, domain and position."
== context.exception.args[0]
)
# should not rise any error
self.before_template_id_3 = self.env["base.comment.template"].create(
{
"name": "before_lines",
"text": "Text before lines",
"model_ids": [(6, 0, self.user_obj.ids)],
"priority": 55,
}
)
def test_fields_view_get(
self, view_id=None, view_type="form", toolbar=False, submenu=False
):
bf_tmp_form_view = self.before_template_id.fields_view_get()
if view_type == "form":
doc = etree.XML(bf_tmp_form_view["arch"])
model_ids = doc.xpath("//field[@name='model_ids']")
domain = model_ids[0].attrib["domain"]
# if domain exist means that the filtering is done and the function is ok
self.assertTrue(domain != "")

View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record model="ir.ui.view" id="view_base_comment_template_tree">
<field name="name">base.comment.template.search</field>
<field name="model">base.comment.template</field>
<field name="arch" type="xml">
<tree string="Comment Templates">
<field name="name" />
<field name="position" />
<field name="company_id" groups="base.group_multi_company" />
<field name="partner_ids" />
<field name="model_ids" />
<field name="domain" />
<field name="priority" />
</tree>
</field>
</record>
<record model="ir.ui.view" id="view_base_comment_template_search">
<field name="name">base.comment.template.search</field>
<field name="model">base.comment.template</field>
<field name="arch" type="xml">
<search string="Comment Templates">
<field name="name" />
<field name="position" />
<field name="company_id" groups="base.group_multi_company" />
<field name="partner_ids" />
<field name="model_ids" />
<field name="domain" />
<field name="priority" />
</search>
</field>
</record>
<record model="ir.ui.view" id="view_base_comment_template_form">
<field name="name">base.comment.template.form</field>
<field name="model">base.comment.template</field>
<field name="arch" type="xml">
<form string="Comment Templates">
<sheet>
<div class="oe_button_box" name="button_box">
<widget
name="web_ribbon"
title="Archived"
bg_color="bg-danger"
attrs="{'invisible': [('active', '=', True)]}"
/>
</div>
<div class="oe_title">
<h1>
<field name="name" placeholder="Name" />
</h1>
</div>
<group>
<group>
<field name="active" invisible="1" />
<field name="position" />
<field
name="company_id"
groups="base.group_multi_company"
/>
<field name="model_ids" widget="many2many_tags" />
<field name="partner_ids" widget="many2many_tags" />
<field name="priority" />
</group>
</group>
<notebook>
<page name="text" string="Comment">
<field name="text" />
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="action_base_comment_template">
<field name="name">Comment Templates</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">base.comment.template</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_base_comment_template_tree" />
</record>
<!-- menu in settings/technical/reporting -->
<menuitem
id="reports_base_comment_template_menuitem"
name="Comment Templates"
parent="base.reporting_menuitem"
action="action_base_comment_template"
sequence="4"
groups="base.group_no_one"
/>
</odoo>

View File

@@ -0,0 +1,21 @@
<odoo>
<record id="view_partner_form" model="ir.ui.view">
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form" />
<field name="arch" type="xml">
<page name='internal_notes' position="after">
<page name='base_comment_template_ids' string="Comment Templates">
<field
colspan="4"
mode="tree"
name="base_comment_template_ids"
nolabel="1"
widget="one2many"
height="300"
context="{'default_partner_id': active_id}"
/>
</page>
</page>
</field>
</record>
</odoo>

View File

@@ -0,0 +1 @@
../../../../base_comment_template

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)