Merge remote-tracking branch 'origin/develop' into develop
						commit
						ea919c1cc3
					
				|  | @ -17,7 +17,7 @@ timezone = Europe/Vienna | ||||||
| show_debug = 1 | show_debug = 1 | ||||||
| 
 | 
 | ||||||
| workers = 0 | workers = 0 | ||||||
| server_wide_modules = web,base_sparse_field,queue_job | server_wide_modules = web,base_sparse_field,queue_job,dp_dump_anonym | ||||||
| 
 | 
 | ||||||
| portal_url = https://dev-portal.tzaustria.info/ | portal_url = https://dev-portal.tzaustria.info/ | ||||||
| portal_secret = hH43413$74O0 | portal_secret = hH43413$74O0 | ||||||
|  |  | ||||||
|  | @ -0,0 +1,60 @@ | ||||||
|  | .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||||||
|  |    :target: https://www.gnu.org/licenses/agpl | ||||||
|  |    :alt: License: AGPL-3 | ||||||
|  | 
 | ||||||
|  | ======================= | ||||||
|  | Base Comments Templates | ||||||
|  | ======================= | ||||||
|  | 
 | ||||||
|  | Add a new model to define templates of comments to print on | ||||||
|  | documents. | ||||||
|  | 
 | ||||||
|  | Two positions are available for the comments: | ||||||
|  | * above document lines | ||||||
|  | * below document lines | ||||||
|  | 
 | ||||||
|  | This module is the base module for following modules: | ||||||
|  | 
 | ||||||
|  | * sale_comment_template | ||||||
|  | * purchase_comment_template | ||||||
|  | * invoice_comment_template | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||||||
|  |    :alt: Try me on Runbot | ||||||
|  |    :target: https://runbot.odoo-community.org/runbot/94/10.0 | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues | ||||||
|  | <https://github.com/OCA/account-invoice-reporting/issues>`_. In case of trouble, please | ||||||
|  | check there if your issue has already been reported. If you spotted it first, | ||||||
|  | help us smash it by providing detailed and welcomed feedback. | ||||||
|  | 
 | ||||||
|  | Contributors | ||||||
|  | ------------ | ||||||
|  | 
 | ||||||
|  | * Nicolas Bessi <nicolas.bessi@camptocamp.com> | ||||||
|  | * Yannick Vaucher <yannick.vaucher@camptocamp.com> | ||||||
|  | * Guewen Baconnier <guewen.baconnier@camptocamp.com> | ||||||
|  | * Simone Rubino <simone.rubino@agilebg.com> | ||||||
|  | 
 | ||||||
|  | Do not contact contributors directly about support or help with technical issues. | ||||||
|  | 
 | ||||||
|  | Maintainer | ||||||
|  | ---------- | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/logo.png | ||||||
|  |    :alt: Odoo Community Association | ||||||
|  |    :target: https://odoo-community.org | ||||||
|  | 
 | ||||||
|  | This module is maintained by the OCA. | ||||||
|  | 
 | ||||||
|  | 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. | ||||||
|  | 
 | ||||||
|  | To contribute to this module, please visit https://odoo-community.org. | ||||||
|  | @ -0,0 +1,4 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | @ -0,0 +1,16 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # © 2013-2014 Nicolas Bessi (Camptocamp SA) | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | 
 | ||||||
|  | {"name": "Base Comments Templates", | ||||||
|  |  "summary": "Comments templates on documents", | ||||||
|  |  "version": "11.0.1.0.0", | ||||||
|  |  "depends": ["base"], | ||||||
|  |  "author": "Camptocamp,Odoo Community Association (OCA)", | ||||||
|  |  "license": "AGPL-3", | ||||||
|  |  "data": ["views/comment_view.xml", | ||||||
|  |           'security/ir.model.access.csv', | ||||||
|  |           ], | ||||||
|  |  "category": "Sale", | ||||||
|  |  'installable': True, | ||||||
|  |  } | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: am\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ar\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,85 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | #	* base_comment_template | ||||||
|  | # | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 8.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2014-10-22 07:20+0000\n" | ||||||
|  | "PO-Revision-Date: 2014-10-22 07:20+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 | ||||||
|  | #: 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 | ||||||
|  | #: field:base.comment.template,text:0 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: view:base.comment.template:base_comment_template.view_base_comment_template_form | ||||||
|  | #: view:base.comment.template:base_comment_template.view_base_comment_template_search | ||||||
|  | #: view:base.comment.template:base_comment_template.view_base_comment_template_tree | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | msgid "Comment Templates" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,name:0 | ||||||
|  | msgid "Comment summary" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,create_uid:0 | ||||||
|  | msgid "Created by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,create_date:0 | ||||||
|  | msgid "Created on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,id:0 | ||||||
|  | msgid "ID" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,write_uid:0 | ||||||
|  | msgid "Last Updated by" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,write_date:0 | ||||||
|  | msgid "Last Updated on" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: field:base.comment.template,position:0 | ||||||
|  | msgid "Position" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: help:base.comment.template,position:0 | ||||||
|  | msgid "Position on document" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: bg\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: bs\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ca\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Comentari " | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: cs\n" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: da\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: de\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Bemerkung" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: el_GR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: en_GB\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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: 2018-01-05 01:40+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-05 01:40+0000\n" | ||||||
|  | "Last-Translator: enjolras <yo@miguelrevilla.com>, 2018\n" | ||||||
|  | "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: selection:base.comment.template,position:0 | ||||||
|  | msgid "After lines" | ||||||
|  | msgstr "Después de las líneas" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.model,name:base_comment_template.model_base_comment_template | ||||||
|  | msgid "Base comment template" | ||||||
|  | msgstr "Plantilla de comentario base" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: selection:base.comment.template,position:0 | ||||||
|  | msgid "Before lines" | ||||||
|  | msgstr "Antes de las líneas" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Comentario" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | msgid "Comment Templates" | ||||||
|  | msgstr "Plantillas 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_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 | ||||||
|  | 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,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 "Ú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.fields,field_description:base_comment_template.field_base_comment_template_position | ||||||
|  | msgid "Position" | ||||||
|  | msgstr "Posició" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position | ||||||
|  | msgid "Position on document" | ||||||
|  | msgstr "Posición en el documento" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_AR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_CL\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_CO\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_CR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_DO\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_EC\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_ES\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_MX\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_PE\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_PY\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_VE\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: et\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: eu\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fa\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fi\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Commentaire" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_CA\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_CH\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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 (https://www.transifex.com/oca/teams/23907/gl/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: gl\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: gl_ES\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: he\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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: 2017-05-16 11:59+0000\n" | ||||||
|  | "Last-Translator: Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2017\n" | ||||||
|  | "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: hr\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Komentar" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: hr_HR\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: hu\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: id\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: it\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Coomento" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ja\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ko\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: lt\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: lt_LT\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: lv\n" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: mk\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: mn\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: nb\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: nb_NO\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: nl\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Opmerking" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: nl_BE\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: nl_NL\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pl\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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 (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pt\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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 (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pt_BR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: pt_PT\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ro\n" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ru\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: sk\n" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,98 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: sl\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "Komentar" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: sr\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: sr@latin\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: sv\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: th\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: tr\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: tr_TR\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: uk\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 | ||||||
|  | #: 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: vi\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: vi_VN\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: zh_CN\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,97 @@ | ||||||
|  | # 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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: zh_TW\n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. 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 | ||||||
|  | msgid "Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_comment_template | ||||||
|  | #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search | ||||||
|  | #: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree | ||||||
|  | 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_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,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: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 "" | ||||||
|  | @ -0,0 +1,6 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright 2014 Guewen Baconnier (Camptocamp SA) | ||||||
|  | # Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | 
 | ||||||
|  | from . import comment | ||||||
|  | @ -0,0 +1,28 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright 2014 Guewen Baconnier (Camptocamp SA) | ||||||
|  | # Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | 
 | ||||||
|  | from odoo import models, fields, api | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class BaseCommentTemplate(models.Model): | ||||||
|  |     _name = "base.comment.template" | ||||||
|  |     _description = "Base comment template" | ||||||
|  | 
 | ||||||
|  |     name = fields.Char('Comment summary', required=True) | ||||||
|  |     position = fields.Selection([('before_lines', 'Before lines'), | ||||||
|  |                                  ('after_lines', 'After lines')], | ||||||
|  |                                 'Position', | ||||||
|  |                                 required=True, | ||||||
|  |                                 default='before_lines', | ||||||
|  |                                 help="Position on document") | ||||||
|  |     text = fields.Html('Comment', translate=True, required=True) | ||||||
|  | 
 | ||||||
|  |     @api.multi | ||||||
|  |     def get_value(self, partner_id=False): | ||||||
|  |         self.ensure_one() | ||||||
|  |         lang = None | ||||||
|  |         if partner_id: | ||||||
|  |             lang = self.env['res.partner'].browse(partner_id).lang | ||||||
|  |         return self.with_context({'lang': lang}).text | ||||||
|  | @ -0,0 +1,2 @@ | ||||||
|  | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||||||
|  | access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1 | ||||||
| 
 | 
|  | @ -0,0 +1,50 @@ | ||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <odoo> | ||||||
|  | 
 | ||||||
|  |     <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"/> | ||||||
|  |         </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"> | ||||||
|  |           <group> | ||||||
|  |             <field name="name"/> | ||||||
|  |             <field name="position"/> | ||||||
|  |             <field name="text" colspan="4"/> | ||||||
|  |           </group> | ||||||
|  |         </form> | ||||||
|  |       </field> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  |     <record model="ir.ui.view" id="view_base_comment_template_tree"> | ||||||
|  |       <field name="name">account.comment.template.list</field> | ||||||
|  |       <field name="model">base.comment.template</field> | ||||||
|  |       <field name="priority" eval="6"/> | ||||||
|  |       <field name="arch" type="xml"> | ||||||
|  |         <tree string="Comment Templates"> | ||||||
|  |           <field name="name"/> | ||||||
|  |           <field name="position"/> | ||||||
|  |         </tree> | ||||||
|  |       </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_type">form</field> | ||||||
|  |       <field name="view_mode">tree,form</field> | ||||||
|  |       <field name="view_id" ref="view_base_comment_template_tree"/> | ||||||
|  |     </record> | ||||||
|  | 
 | ||||||
|  | </odoo> | ||||||
|  | @ -0,0 +1,55 @@ | ||||||
|  | .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||||||
|  |    :target: https://www.gnu.org/licenses/agpl | ||||||
|  |    :alt: License: AGPL-3 | ||||||
|  | 
 | ||||||
|  | ================ | ||||||
|  | Invoice Comments | ||||||
|  | ================ | ||||||
|  | 
 | ||||||
|  | Adds comments on invoices. | ||||||
|  | The comments can be edited directly on the invoices or loaded from | ||||||
|  | templates. | ||||||
|  | 
 | ||||||
|  | Two positions are available for the comments: | ||||||
|  | 
 | ||||||
|  | - before invoice lines | ||||||
|  | - after invoice lines | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||||||
|  |    :alt: Try me on Runbot | ||||||
|  |    :target: https://runbot.odoo-community.org/runbot/94/10.0 | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues | ||||||
|  | <https://github.com/OCA/account-invoice-reporting/issues>`_. In case of trouble, please | ||||||
|  | check there if your issue has already been reported. If you spotted it first, | ||||||
|  | help us smash it by providing detailed and welcomed feedback. | ||||||
|  | 
 | ||||||
|  | Contributors | ||||||
|  | ------------ | ||||||
|  | 
 | ||||||
|  | * Nicolas Bessi <nicolas.bessi@camptocamp.com> | ||||||
|  | * Yannick Vaucher <yannick.vaucher@camptocamp.com> | ||||||
|  | * Simone Rubino <simone.rubino@agilebg.com> | ||||||
|  | 
 | ||||||
|  | Do not contact contributors directly about support or help with technical issues. | ||||||
|  | 
 | ||||||
|  | Maintainer | ||||||
|  | ---------- | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/logo.png | ||||||
|  |    :alt: Odoo Community Association | ||||||
|  |    :target: https://odoo-community.org | ||||||
|  | 
 | ||||||
|  | This module is maintained by the OCA. | ||||||
|  | 
 | ||||||
|  | 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. | ||||||
|  | 
 | ||||||
|  | To contribute to this module, please visit https://odoo-community.org. | ||||||
|  | @ -0,0 +1,6 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright 2014 Guewen Baconnier (Camptocamp SA) | ||||||
|  | # Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | @ -0,0 +1,21 @@ | ||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Copyright 2014 Guewen Baconnier (Camptocamp SA) | ||||||
|  | # Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) | ||||||
|  | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||||||
|  | {'name': 'Invoice Comments', | ||||||
|  |  'summary': 'Comments templates on invoice documents', | ||||||
|  |  'version': '11.0.1.1.0', | ||||||
|  |  'depends': ['account', | ||||||
|  |              'base_comment_template', | ||||||
|  |              ], | ||||||
|  |  'author': "Camptocamp,Odoo Community Association (OCA)", | ||||||
|  |  "license": "AGPL-3", | ||||||
|  |  'data': ['views/account_invoice_view.xml', | ||||||
|  |           'views/base_comment_template_view.xml', | ||||||
|  |           'security/ir.model.access.csv', | ||||||
|  |           'views/report_invoice.xml', | ||||||
|  |           'views/res_partner_views.xml', | ||||||
|  |           ], | ||||||
|  |  'category': 'Sale', | ||||||
|  |  'installable': True, | ||||||
|  |  } | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ar\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: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "فاتورة" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: bg\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Фактура" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: bs\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: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Faktura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,78 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_comment_template | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Carles Antoli <carlesantoli@hotmail.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: Carles Antoli <carlesantoli@hotmail.com>, 2017\n" | ||||||
|  | "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: ca\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Comentaris" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: cs\n" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Faktura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,81 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_comment_template | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Rudolf Schnapka <rs@techno-flex.de>, 2017 | ||||||
|  | # 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: German (https://www.transifex.com/oca/teams/23907/de/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: de\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "Untere Bemerkung" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "Vorlage für Untere Bemerkung" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "Untere Bemerkungen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Bemerkungen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "Dokument-Bemerkungen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Rechnung" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "Vorlage öffnen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | "Bemerkungen werden im gedruckten Dokument angezeigt. Sie können zuvor " | ||||||
|  | "erstellte Vorlagen verwenden, Ihren eigenen Text erfassen oder eine Vorlage " | ||||||
|  | "öffnen und diese für dieses Dokument anpassen." | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "Obere Bemerkungen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "Vorlagen für obere Bemerkungen" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "Obere Bemerkungen" | ||||||
|  | @ -0,0 +1,78 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_comment_template | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | # Kostas Goutoudis <goutoudis@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: Kostas Goutoudis <goutoudis@gmail.com>, 2017\n" | ||||||
|  | "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: el_GR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Σχόλια" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Τιμολόγιο" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: en_GB\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Invoice" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,91 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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: 2018-04-04 09:51+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-05 01:40+0000\n" | ||||||
|  | "Last-Translator: enjolras <yo@miguelrevilla.com>, 2018\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: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "Comentario inferior" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "Plantilla de comentario inferior" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "Comentarios inferiores" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Comentarios" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_res_partner_comment_template_id | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_res_users_comment_template_id | ||||||
|  | msgid "Conditions template" | ||||||
|  | msgstr "Plantilla de condiciones"  | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "Comentarios del documento" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "Cargar una plantilla" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_res_partner | ||||||
|  | msgid "Partner" | ||||||
|  | msgstr "Cliente" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | "Los comentarios se mostrarán en el documento impreso. Puede cargar una " | ||||||
|  | "plantilla predeterminada, escribir su propio texto o cargar una plantilla y " | ||||||
|  | "modificarla sólo para este documento." | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "Comentario superior" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "Plantilla de comentario superior" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "Comentarios superiores" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_CR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_EC\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: es_MX\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: et\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Arve" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fi\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Lasku" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,88 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_comment_template | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Quentin THEURET <odoo@kerpeo.com>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-05-10 14:32+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-05-10 14:32+0000\n" | ||||||
|  | "Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\n" | ||||||
|  | "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_res_partner_comment_template_id | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_res_users_comment_template_id | ||||||
|  | msgid "Conditions template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_res_partner | ||||||
|  | msgid "Partner" | ||||||
|  | msgstr "Partenaire" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_CA\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Facture" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_CH\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Facture" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_comment_template | ||||||
|  | #  | ||||||
|  | # Translators: | ||||||
|  | # Mohamed HABOU <m.habou@agoradeveloppement.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: Mohamed HABOU <m.habou@agoradeveloppement.com>, 2017\n" | ||||||
|  | "Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: fr_FR\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Commentaires" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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 (https://www.transifex.com/oca/teams/23907/gl/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: gl\n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Factura" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,77 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * invoice_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 (https://www.transifex.com/oca/teams/23907/hr/)\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Language: hr\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: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note2 | ||||||
|  | msgid "Bottom Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template2_id | ||||||
|  | msgid "Bottom Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Bottom Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Comments" | ||||||
|  | msgstr "Komentari" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.menu,name:invoice_comment_template.menu_base_comment_template_invoice | ||||||
|  | msgid "Document Comments" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model,name:invoice_comment_template.model_account_invoice | ||||||
|  | msgid "Invoice" | ||||||
|  | msgstr "Račun" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Load a template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "" | ||||||
|  | "The comments will be displayed on the printed document. You can load a " | ||||||
|  | "predefined template, write your own text or load a template and then modify " | ||||||
|  | "it only for this document." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_note1 | ||||||
|  | msgid "Top Comment" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.model.fields,field_description:invoice_comment_template.field_account_invoice_comment_template1_id | ||||||
|  | msgid "Top Comment Template" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: invoice_comment_template | ||||||
|  | #: model:ir.ui.view,arch_db:invoice_comment_template.invoice_form_add_comment | ||||||
|  | msgid "Top Comments" | ||||||
|  | msgstr "" | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue