From baacc1ab5350a9469a8ec8e9f3b57166519008b8 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Mon, 8 Dec 2014 08:50:03 +0100 Subject: [PATCH 01/20] Rename base_condition_template to base_comment_template --- base_comment_template/README.rst | 23 +++++ base_comment_template/__init__.py | 2 + base_comment_template/__openerp__.py | 31 +++++++ base_comment_template/comment.py | 43 ++++++++++ base_comment_template/comment_view.xml | 51 +++++++++++ .../i18n/base_comment_template.pot | 85 +++++++++++++++++++ base_comment_template/i18n/fr.po | 85 +++++++++++++++++++ .../security/ir.model.access.csv | 2 + 8 files changed, 322 insertions(+) create mode 100644 base_comment_template/README.rst create mode 100644 base_comment_template/__init__.py create mode 100644 base_comment_template/__openerp__.py create mode 100644 base_comment_template/comment.py create mode 100644 base_comment_template/comment_view.xml create mode 100644 base_comment_template/i18n/base_comment_template.pot create mode 100644 base_comment_template/i18n/fr.po create mode 100644 base_comment_template/security/ir.model.access.csv diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst new file mode 100644 index 000000000..2383ed1a9 --- /dev/null +++ b/base_comment_template/README.rst @@ -0,0 +1,23 @@ +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 + +Contributors +------------ + +* Nicolas Bessi +* Yannick Vaucher +* Guewen Baconnier diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py new file mode 100644 index 000000000..72bf49f6c --- /dev/null +++ b/base_comment_template/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import comment diff --git a/base_comment_template/__openerp__.py b/base_comment_template/__openerp__.py new file mode 100644 index 000000000..ba603c622 --- /dev/null +++ b/base_comment_template/__openerp__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# +# +# Author: Nicolas Bessi +# Copyright 2013-2014 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# +{"name": "Base Comments Templates", + "summary": "Comments templates on documents", + "version": "8.0.1.0.0", + "depends": ["base"], + "author": "Camptocamp,Odoo Community Association (OCA)", + "data": ["comment_view.xml", + 'security/ir.model.access.csv', + ], + "category": "Sale", + "installable": True, + "active": False, } diff --git a/base_comment_template/comment.py b/base_comment_template/comment.py new file mode 100644 index 000000000..eee893b96 --- /dev/null +++ b/base_comment_template/comment.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +# +# +# Author: Nicolas Bessi +# Copyright 2013-2014 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# +from openerp 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 diff --git a/base_comment_template/comment_view.xml b/base_comment_template/comment_view.xml new file mode 100644 index 000000000..5a6cbd6c8 --- /dev/null +++ b/base_comment_template/comment_view.xml @@ -0,0 +1,51 @@ + + + + + base.comment.template.search + base.comment.template + + + + + + + + + + base.comment.template.form + base.comment.template + +
+ + + + + +
+
+
+ + + account.comment.template.list + base.comment.template + + + + + + + + + + + Comment Templates + ir.actions.act_window + base.comment.template + form + tree,form + + + +
+
diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot new file mode 100644 index 000000000..242e5bdcb --- /dev/null +++ b/base_comment_template/i18n/base_comment_template.pot @@ -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 "" + diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po new file mode 100644 index 000000000..c05cfa4ff --- /dev/null +++ b/base_comment_template/i18n/fr.po @@ -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" +"Language: \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 "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 +#: field:base.comment.template,text:0 +msgid "Comment" +msgstr "Commentaire" + +#. 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 "Modèles de commentaires" + +#. module: base_comment_template +#: field:base.comment.template,name:0 +msgid "Comment summary" +msgstr "Nom" + +#. 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 "Position" + +#. module: base_comment_template +#: help:base.comment.template,position:0 +msgid "Position on document" +msgstr "Position sur le document" diff --git a/base_comment_template/security/ir.model.access.csv b/base_comment_template/security/ir.model.access.csv new file mode 100644 index 000000000..7485600f7 --- /dev/null +++ b/base_comment_template/security/ir.model.access.csv @@ -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 From 56a9780994097dbd458ab5884aa4f361ee9fd77e Mon Sep 17 00:00:00 2001 From: leNeo Date: Wed, 24 Aug 2016 18:53:04 +0200 Subject: [PATCH 02/20] [MIG] base_comment_template to 9.0 --- base_comment_template/README.rst | 29 +++++++++++++- base_comment_template/__init__.py | 3 +- base_comment_template/__openerp__.py | 39 ++++++------------- base_comment_template/models/__init__.py | 2 + base_comment_template/{ => models}/comment.py | 21 +--------- .../{comment_view.xml => views/comment.xml} | 0 6 files changed, 45 insertions(+), 49 deletions(-) create mode 100644 base_comment_template/models/__init__.py rename base_comment_template/{ => models}/comment.py (54%) rename base_comment_template/{comment_view.xml => views/comment.xml} (100%) diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index 2383ed1a9..5ca2bad49 100644 --- a/base_comment_template/README.rst +++ b/base_comment_template/README.rst @@ -1,3 +1,8 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======================= Base Comments Templates ======================= @@ -5,7 +10,6 @@ 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 @@ -15,9 +19,32 @@ This module is the base module for following modules: * purchase_comment_template * invoice_comment_template +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + Contributors ------------ * Nicolas Bessi * Yannick Vaucher * Guewen Baconnier + +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. diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py index 72bf49f6c..9dd1c5c2c 100644 --- a/base_comment_template/__init__.py +++ b/base_comment_template/__init__.py @@ -1,2 +1,3 @@ # -*- coding: utf-8 -*- -from . import comment +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models diff --git a/base_comment_template/__openerp__.py b/base_comment_template/__openerp__.py index ba603c622..8cf47bc05 100644 --- a/base_comment_template/__openerp__.py +++ b/base_comment_template/__openerp__.py @@ -1,31 +1,14 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi -# Copyright 2013-2014 Camptocamp SA -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -# -{"name": "Base Comments Templates", - "summary": "Comments templates on documents", - "version": "8.0.1.0.0", - "depends": ["base"], - "author": "Camptocamp,Odoo Community Association (OCA)", - "data": ["comment_view.xml", +# © 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': '9.0.1.0.0', + 'license': 'AGPL-3', + 'depends': ['base', ], + 'author': 'Camptocamp,Odoo Community Association (OCA)', + 'data': ['views/comment.xml', 'security/ir.model.access.csv', ], - "category": "Sale", - "installable": True, - "active": False, } + 'category': 'Sale', + 'installable': True, } diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py new file mode 100644 index 000000000..72bf49f6c --- /dev/null +++ b/base_comment_template/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import comment diff --git a/base_comment_template/comment.py b/base_comment_template/models/comment.py similarity index 54% rename from base_comment_template/comment.py rename to base_comment_template/models/comment.py index eee893b96..79032e12e 100644 --- a/base_comment_template/comment.py +++ b/base_comment_template/models/comment.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -# -# -# Author: Nicolas Bessi -# Copyright 2013-2014 Camptocamp SA -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -# +# © 2013-2014 Nicolas Bessi (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields, api diff --git a/base_comment_template/comment_view.xml b/base_comment_template/views/comment.xml similarity index 100% rename from base_comment_template/comment_view.xml rename to base_comment_template/views/comment.xml From 32c6b67ca8fdfb390f96159076ead418980d2501 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 20 May 2017 01:10:27 +0200 Subject: [PATCH 03/20] OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex --- base_comment_template/i18n/am.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/ar.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/bg.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/bs.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/ca.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/cs.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/da.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/de.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/el_GR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/en_GB.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es.po | 99 ++++++++++++++++++++++++++ base_comment_template/i18n/es_AR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_CL.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_CO.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_CR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_DO.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_EC.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_ES.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_MX.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_PE.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_PY.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/es_VE.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/et.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/eu.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/fa.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/fi.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/fr.po | 64 ++++++++++------- base_comment_template/i18n/fr_CA.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/fr_CH.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/gl.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/gl_ES.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/he.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/hr.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/hr_HR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/hu.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/id.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/it.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/ja.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/ko.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/lt.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/lt_LT.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/lv.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/mk.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/mn.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/nb.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/nb_NO.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/nl.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/nl_BE.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/nl_NL.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/pl.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/pt.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/pt_BR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/pt_PT.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/ro.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/ru.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/sk.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/sl.po | 98 +++++++++++++++++++++++++ base_comment_template/i18n/sr.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/sr@latin.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/sv.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/th.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/tr.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/tr_TR.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/uk.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/vi.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/vi_VN.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/zh_CN.po | 97 +++++++++++++++++++++++++ base_comment_template/i18n/zh_TW.po | 97 +++++++++++++++++++++++++ 68 files changed, 6545 insertions(+), 26 deletions(-) create mode 100644 base_comment_template/i18n/am.po create mode 100644 base_comment_template/i18n/ar.po create mode 100644 base_comment_template/i18n/bg.po create mode 100644 base_comment_template/i18n/bs.po create mode 100644 base_comment_template/i18n/ca.po create mode 100644 base_comment_template/i18n/cs.po create mode 100644 base_comment_template/i18n/da.po create mode 100644 base_comment_template/i18n/de.po create mode 100644 base_comment_template/i18n/el_GR.po create mode 100644 base_comment_template/i18n/en_GB.po create mode 100644 base_comment_template/i18n/es.po create mode 100644 base_comment_template/i18n/es_AR.po create mode 100644 base_comment_template/i18n/es_CL.po create mode 100644 base_comment_template/i18n/es_CO.po create mode 100644 base_comment_template/i18n/es_CR.po create mode 100644 base_comment_template/i18n/es_DO.po create mode 100644 base_comment_template/i18n/es_EC.po create mode 100644 base_comment_template/i18n/es_ES.po create mode 100644 base_comment_template/i18n/es_MX.po create mode 100644 base_comment_template/i18n/es_PE.po create mode 100644 base_comment_template/i18n/es_PY.po create mode 100644 base_comment_template/i18n/es_VE.po create mode 100644 base_comment_template/i18n/et.po create mode 100644 base_comment_template/i18n/eu.po create mode 100644 base_comment_template/i18n/fa.po create mode 100644 base_comment_template/i18n/fi.po create mode 100644 base_comment_template/i18n/fr_CA.po create mode 100644 base_comment_template/i18n/fr_CH.po create mode 100644 base_comment_template/i18n/gl.po create mode 100644 base_comment_template/i18n/gl_ES.po create mode 100644 base_comment_template/i18n/he.po create mode 100644 base_comment_template/i18n/hr.po create mode 100644 base_comment_template/i18n/hr_HR.po create mode 100644 base_comment_template/i18n/hu.po create mode 100644 base_comment_template/i18n/id.po create mode 100644 base_comment_template/i18n/it.po create mode 100644 base_comment_template/i18n/ja.po create mode 100644 base_comment_template/i18n/ko.po create mode 100644 base_comment_template/i18n/lt.po create mode 100644 base_comment_template/i18n/lt_LT.po create mode 100644 base_comment_template/i18n/lv.po create mode 100644 base_comment_template/i18n/mk.po create mode 100644 base_comment_template/i18n/mn.po create mode 100644 base_comment_template/i18n/nb.po create mode 100644 base_comment_template/i18n/nb_NO.po create mode 100644 base_comment_template/i18n/nl.po create mode 100644 base_comment_template/i18n/nl_BE.po create mode 100644 base_comment_template/i18n/nl_NL.po create mode 100644 base_comment_template/i18n/pl.po create mode 100644 base_comment_template/i18n/pt.po create mode 100644 base_comment_template/i18n/pt_BR.po create mode 100644 base_comment_template/i18n/pt_PT.po create mode 100644 base_comment_template/i18n/ro.po create mode 100644 base_comment_template/i18n/ru.po create mode 100644 base_comment_template/i18n/sk.po create mode 100644 base_comment_template/i18n/sl.po create mode 100644 base_comment_template/i18n/sr.po create mode 100644 base_comment_template/i18n/sr@latin.po create mode 100644 base_comment_template/i18n/sv.po create mode 100644 base_comment_template/i18n/th.po create mode 100644 base_comment_template/i18n/tr.po create mode 100644 base_comment_template/i18n/tr_TR.po create mode 100644 base_comment_template/i18n/uk.po create mode 100644 base_comment_template/i18n/vi.po create mode 100644 base_comment_template/i18n/vi_VN.po create mode 100644 base_comment_template/i18n/zh_CN.po create mode 100644 base_comment_template/i18n/zh_TW.po diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po new file mode 100644 index 000000000..415d51b3d --- /dev/null +++ b/base_comment_template/i18n/am.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"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 "" diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po new file mode 100644 index 000000000..b99caf712 --- /dev/null +++ b/base_comment_template/i18n/ar.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"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 "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po new file mode 100644 index 000000000..9cde6bb6b --- /dev/null +++ b/base_comment_template/i18n/bg.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"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 "" diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po new file mode 100644 index 000000000..d00d92fc6 --- /dev/null +++ b/base_comment_template/i18n/bs.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"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 "" diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po new file mode 100644 index 000000000..b1dfe2da4 --- /dev/null +++ b/base_comment_template/i18n/ca.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 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 "" diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po new file mode 100644 index 000000000..32e78810a --- /dev/null +++ b/base_comment_template/i18n/cs.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"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 "" diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po new file mode 100644 index 000000000..4b1a17e19 --- /dev/null +++ b/base_comment_template/i18n/da.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"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 "" diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po new file mode 100644 index 000000000..c3513c2d4 --- /dev/null +++ b/base_comment_template/i18n/de.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: Rudolf Schnapka , 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" diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po new file mode 100644 index 000000000..a52d6b47d --- /dev/null +++ b/base_comment_template/i18n/el_GR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"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 "" diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po new file mode 100644 index 000000000..8bacebeb2 --- /dev/null +++ b/base_comment_template/i18n/en_GB.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"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 "" diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po new file mode 100644 index 000000000..bf5883ac5 --- /dev/null +++ b/base_comment_template/i18n/es.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Antonio Trueba , 2017 +# Pedro M. Baeza , 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: Pedro M. Baeza , 2017\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 "" + +#. 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 "Comentarios" + +#. 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 comentario" + +#. 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 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 "Actualizado por ú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 "Actualizado por última vez el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_position +msgid "Position" +msgstr "Posición" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po new file mode 100644 index 000000000..6cb21f280 --- /dev/null +++ b/base_comment_template/i18n/es_AR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_CL.po b/base_comment_template/i18n/es_CL.po new file mode 100644 index 000000000..0cca0fe30 --- /dev/null +++ b/base_comment_template/i18n/es_CL.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_CO.po b/base_comment_template/i18n/es_CO.po new file mode 100644 index 000000000..8d87355fa --- /dev/null +++ b/base_comment_template/i18n/es_CO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_CR.po b/base_comment_template/i18n/es_CR.po new file mode 100644 index 000000000..b16b085e5 --- /dev/null +++ b/base_comment_template/i18n/es_CR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_DO.po b/base_comment_template/i18n/es_DO.po new file mode 100644 index 000000000..5bef8f7fa --- /dev/null +++ b/base_comment_template/i18n/es_DO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_EC.po b/base_comment_template/i18n/es_EC.po new file mode 100644 index 000000000..ccda6d633 --- /dev/null +++ b/base_comment_template/i18n/es_EC.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_ES.po b/base_comment_template/i18n/es_ES.po new file mode 100644 index 000000000..74e5516a3 --- /dev/null +++ b/base_comment_template/i18n/es_ES.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_MX.po b/base_comment_template/i18n/es_MX.po new file mode 100644 index 000000000..01aede875 --- /dev/null +++ b/base_comment_template/i18n/es_MX.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_PE.po b/base_comment_template/i18n/es_PE.po new file mode 100644 index 000000000..2ef2a3505 --- /dev/null +++ b/base_comment_template/i18n/es_PE.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_PY.po b/base_comment_template/i18n/es_PY.po new file mode 100644 index 000000000..9b5d59326 --- /dev/null +++ b/base_comment_template/i18n/es_PY.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/es_VE.po b/base_comment_template/i18n/es_VE.po new file mode 100644 index 000000000..0a03c6b68 --- /dev/null +++ b/base_comment_template/i18n/es_VE.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/et.po b/base_comment_template/i18n/et.po new file mode 100644 index 000000000..de15afa58 --- /dev/null +++ b/base_comment_template/i18n/et.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/eu.po b/base_comment_template/i18n/eu.po new file mode 100644 index 000000000..768db7154 --- /dev/null +++ b/base_comment_template/i18n/eu.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/fa.po b/base_comment_template/i18n/fa.po new file mode 100644 index 000000000..83d36728e --- /dev/null +++ b/base_comment_template/i18n/fa.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/fi.po b/base_comment_template/i18n/fi.po new file mode 100644 index 000000000..7e4962183 --- /dev/null +++ b/base_comment_template/i18n/fi.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po index c05cfa4ff..67ebaf10b 100644 --- a/base_comment_template/i18n/fr.po +++ b/base_comment_template/i18n/fr.po @@ -1,20 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * base_comment_template -# +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\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" -"Language: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template #: selection:base.comment.template,position:0 @@ -32,54 +34,64 @@ msgid "Before lines" msgstr "Avant les lignes" #. module: base_comment_template -#: field:base.comment.template,text:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text msgid "Comment" msgstr "Commentaire" #. 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 +#: 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 -#: field:base.comment.template,name:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name msgid "Comment summary" msgstr "Nom" #. module: base_comment_template -#: field:base.comment.template,create_uid:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid msgid "Created by" -msgstr "" +msgstr "Créé par" #. module: base_comment_template -#: field:base.comment.template,create_date:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date msgid "Created on" -msgstr "" +msgstr "Créé le" #. module: base_comment_template -#: field:base.comment.template,id:0 +#: 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 "" +msgstr "ID" #. module: base_comment_template -#: field:base.comment.template,write_uid:0 +#: 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 "" +msgstr "Dernière mise-à-jour par" #. module: base_comment_template -#: field:base.comment.template,write_date:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_date msgid "Last Updated on" -msgstr "" +msgstr "Dernière mise-à-jour le" #. module: base_comment_template -#: field:base.comment.template,position:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_position msgid "Position" msgstr "Position" #. module: base_comment_template -#: help:base.comment.template,position:0 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position msgid "Position on document" msgstr "Position sur le document" diff --git a/base_comment_template/i18n/fr_CA.po b/base_comment_template/i18n/fr_CA.po new file mode 100644 index 000000000..bb29b463d --- /dev/null +++ b/base_comment_template/i18n/fr_CA.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/fr_CH.po b/base_comment_template/i18n/fr_CH.po new file mode 100644 index 000000000..695f99221 --- /dev/null +++ b/base_comment_template/i18n/fr_CH.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po new file mode 100644 index 000000000..11e7d1033 --- /dev/null +++ b/base_comment_template/i18n/gl.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po new file mode 100644 index 000000000..06d4365a2 --- /dev/null +++ b/base_comment_template/i18n/gl_ES.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/he.po b/base_comment_template/i18n/he.po new file mode 100644 index 000000000..83047d952 --- /dev/null +++ b/base_comment_template/i18n/he.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/hr.po b/base_comment_template/i18n/hr.po new file mode 100644 index 000000000..4e84aa55d --- /dev/null +++ b/base_comment_template/i18n/hr.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Ana-Maria Olujić , 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ć , 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 "" diff --git a/base_comment_template/i18n/hr_HR.po b/base_comment_template/i18n/hr_HR.po new file mode 100644 index 000000000..d649a42e8 --- /dev/null +++ b/base_comment_template/i18n/hr_HR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/hu.po b/base_comment_template/i18n/hu.po new file mode 100644 index 000000000..1a83db933 --- /dev/null +++ b/base_comment_template/i18n/hu.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/id.po b/base_comment_template/i18n/id.po new file mode 100644 index 000000000..b1f935b73 --- /dev/null +++ b/base_comment_template/i18n/id.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/it.po b/base_comment_template/i18n/it.po new file mode 100644 index 000000000..463ea5025 --- /dev/null +++ b/base_comment_template/i18n/it.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 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 , 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 "" diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po new file mode 100644 index 000000000..d0770995e --- /dev/null +++ b/base_comment_template/i18n/ja.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/ko.po b/base_comment_template/i18n/ko.po new file mode 100644 index 000000000..0d3ab6c99 --- /dev/null +++ b/base_comment_template/i18n/ko.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/lt.po b/base_comment_template/i18n/lt.po new file mode 100644 index 000000000..8d5835da0 --- /dev/null +++ b/base_comment_template/i18n/lt.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/lt_LT.po b/base_comment_template/i18n/lt_LT.po new file mode 100644 index 000000000..2fac99beb --- /dev/null +++ b/base_comment_template/i18n/lt_LT.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/lv.po b/base_comment_template/i18n/lv.po new file mode 100644 index 000000000..c9564021a --- /dev/null +++ b/base_comment_template/i18n/lv.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/mk.po b/base_comment_template/i18n/mk.po new file mode 100644 index 000000000..fd4d67ee2 --- /dev/null +++ b/base_comment_template/i18n/mk.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/mn.po b/base_comment_template/i18n/mn.po new file mode 100644 index 000000000..069f2d361 --- /dev/null +++ b/base_comment_template/i18n/mn.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/nb.po b/base_comment_template/i18n/nb.po new file mode 100644 index 000000000..099eedff4 --- /dev/null +++ b/base_comment_template/i18n/nb.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/nb_NO.po b/base_comment_template/i18n/nb_NO.po new file mode 100644 index 000000000..da5232ff1 --- /dev/null +++ b/base_comment_template/i18n/nb_NO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/nl.po b/base_comment_template/i18n/nl.po new file mode 100644 index 000000000..a7e3146be --- /dev/null +++ b/base_comment_template/i18n/nl.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/nl_BE.po b/base_comment_template/i18n/nl_BE.po new file mode 100644 index 000000000..8a6c793c5 --- /dev/null +++ b/base_comment_template/i18n/nl_BE.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/nl_NL.po b/base_comment_template/i18n/nl_NL.po new file mode 100644 index 000000000..6e7453929 --- /dev/null +++ b/base_comment_template/i18n/nl_NL.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 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 , 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 "" diff --git a/base_comment_template/i18n/pl.po b/base_comment_template/i18n/pl.po new file mode 100644 index 000000000..218d5f0c9 --- /dev/null +++ b/base_comment_template/i18n/pl.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po new file mode 100644 index 000000000..0631b92b5 --- /dev/null +++ b/base_comment_template/i18n/pt.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po new file mode 100644 index 000000000..748cbee69 --- /dev/null +++ b/base_comment_template/i18n/pt_BR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po new file mode 100644 index 000000000..c57ec95ab --- /dev/null +++ b/base_comment_template/i18n/pt_PT.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/ro.po b/base_comment_template/i18n/ro.po new file mode 100644 index 000000000..995e3045e --- /dev/null +++ b/base_comment_template/i18n/ro.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/ru.po b/base_comment_template/i18n/ru.po new file mode 100644 index 000000000..7a93ccdd0 --- /dev/null +++ b/base_comment_template/i18n/ru.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/sk.po b/base_comment_template/i18n/sk.po new file mode 100644 index 000000000..19d3b2756 --- /dev/null +++ b/base_comment_template/i18n/sk.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/sl.po b/base_comment_template/i18n/sl.po new file mode 100644 index 000000000..a1459b7af --- /dev/null +++ b/base_comment_template/i18n/sl.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 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č , 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" diff --git a/base_comment_template/i18n/sr.po b/base_comment_template/i18n/sr.po new file mode 100644 index 000000000..d54c36f82 --- /dev/null +++ b/base_comment_template/i18n/sr.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/sr@latin.po b/base_comment_template/i18n/sr@latin.po new file mode 100644 index 000000000..2ee51217a --- /dev/null +++ b/base_comment_template/i18n/sr@latin.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/sv.po b/base_comment_template/i18n/sv.po new file mode 100644 index 000000000..1afa50a17 --- /dev/null +++ b/base_comment_template/i18n/sv.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/th.po b/base_comment_template/i18n/th.po new file mode 100644 index 000000000..1fb60ca5e --- /dev/null +++ b/base_comment_template/i18n/th.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/tr.po b/base_comment_template/i18n/tr.po new file mode 100644 index 000000000..c9cd3919b --- /dev/null +++ b/base_comment_template/i18n/tr.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/tr_TR.po b/base_comment_template/i18n/tr_TR.po new file mode 100644 index 000000000..2c32a0e0f --- /dev/null +++ b/base_comment_template/i18n/tr_TR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/uk.po b/base_comment_template/i18n/uk.po new file mode 100644 index 000000000..5bd525498 --- /dev/null +++ b/base_comment_template/i18n/uk.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/vi.po b/base_comment_template/i18n/vi.po new file mode 100644 index 000000000..1e8111d20 --- /dev/null +++ b/base_comment_template/i18n/vi.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/vi_VN.po b/base_comment_template/i18n/vi_VN.po new file mode 100644 index 000000000..448bfbcf4 --- /dev/null +++ b/base_comment_template/i18n/vi_VN.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/zh_CN.po b/base_comment_template/i18n/zh_CN.po new file mode 100644 index 000000000..6f8600319 --- /dev/null +++ b/base_comment_template/i18n/zh_CN.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" diff --git a/base_comment_template/i18n/zh_TW.po b/base_comment_template/i18n/zh_TW.po new file mode 100644 index 000000000..584e32bd4 --- /dev/null +++ b/base_comment_template/i18n/zh_TW.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: 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 "" From 6faeafc02ae28f45f1b56230f7bc29d55c94ce7d Mon Sep 17 00:00:00 2001 From: Cedric Le Brouster Date: Mon, 19 Jun 2017 13:34:20 +0200 Subject: [PATCH 04/20] [MIG] base_comment_template, invoice_comment_template: Migration to 10.0 Port modules base_comment_template and invoice_comment_template to V10 --- base_comment_template/README.rst | 26 +++++++++++++------ base_comment_template/__init__.py | 1 + base_comment_template/__manifest__.py | 16 ++++++++++++ base_comment_template/__openerp__.py | 14 ---------- base_comment_template/models/__init__.py | 4 +++ base_comment_template/models/comment.py | 6 +++-- .../views/{comment.xml => comment_view.xml} | 7 +++-- 7 files changed, 46 insertions(+), 28 deletions(-) create mode 100644 base_comment_template/__manifest__.py delete mode 100644 base_comment_template/__openerp__.py rename base_comment_template/views/{comment.xml => comment_view.xml} (97%) diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index 5ca2bad49..05c00bbae 100644 --- a/base_comment_template/README.rst +++ b/base_comment_template/README.rst @@ -1,5 +1,5 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 ======================= @@ -10,8 +10,8 @@ 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 +* above document lines +* below document lines This module is the base module for following modules: @@ -19,13 +19,20 @@ This module is the base module for following modules: * purchase_comment_template * invoice_comment_template -Credits -======= +Usage +===== -Images ------- +.. 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 -* Odoo Community Association: `Icon `_. +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. Contributors ------------ @@ -33,6 +40,9 @@ Contributors * Nicolas Bessi * Yannick Vaucher * Guewen Baconnier +* Simone Rubino + +Do not contact contributors directly about support or help with technical issues. Maintainer ---------- diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py index 9dd1c5c2c..a77a6fcbc 100644 --- a/base_comment_template/__init__.py +++ b/base_comment_template/__init__.py @@ -1,3 +1,4 @@ # -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import models diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py new file mode 100644 index 000000000..010b7fb8a --- /dev/null +++ b/base_comment_template/__manifest__.py @@ -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": "10.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, + } diff --git a/base_comment_template/__openerp__.py b/base_comment_template/__openerp__.py deleted file mode 100644 index 8cf47bc05..000000000 --- a/base_comment_template/__openerp__.py +++ /dev/null @@ -1,14 +0,0 @@ -# -*- 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': '9.0.1.0.0', - 'license': 'AGPL-3', - 'depends': ['base', ], - 'author': 'Camptocamp,Odoo Community Association (OCA)', - 'data': ['views/comment.xml', - 'security/ir.model.access.csv', - ], - 'category': 'Sale', - 'installable': True, } diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py index 72bf49f6c..5cfb03321 100644 --- a/base_comment_template/models/__init__.py +++ b/base_comment_template/models/__init__.py @@ -1,2 +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 diff --git a/base_comment_template/models/comment.py b/base_comment_template/models/comment.py index 79032e12e..3b4ae9865 100644 --- a/base_comment_template/models/comment.py +++ b/base_comment_template/models/comment.py @@ -1,7 +1,9 @@ # -*- coding: utf-8 -*- -# © 2013-2014 Nicolas Bessi (Camptocamp SA) +# 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 openerp import models, fields, api + +from odoo import models, fields, api class BaseCommentTemplate(models.Model): diff --git a/base_comment_template/views/comment.xml b/base_comment_template/views/comment_view.xml similarity index 97% rename from base_comment_template/views/comment.xml rename to base_comment_template/views/comment_view.xml index 5a6cbd6c8..febb9abb5 100644 --- a/base_comment_template/views/comment.xml +++ b/base_comment_template/views/comment_view.xml @@ -1,6 +1,6 @@ - - + + base.comment.template.search base.comment.template @@ -47,5 +47,4 @@ - - + From 4fe700b7aa7da28aac6dc745af5fc4962f1aba38 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 24 Feb 2018 01:20:58 +0100 Subject: [PATCH 05/20] OCA Transbot updated translations from Transifex --- base_comment_template/i18n/am.po | 4 +- base_comment_template/i18n/ar.po | 7 ++-- .../i18n/base_comment_template.pot | 38 +++++++++++-------- base_comment_template/i18n/bg.po | 4 +- base_comment_template/i18n/bs.po | 7 ++-- base_comment_template/i18n/ca.po | 4 +- base_comment_template/i18n/cs.po | 4 +- base_comment_template/i18n/da.po | 4 +- base_comment_template/i18n/de.po | 4 +- base_comment_template/i18n/el_GR.po | 7 ++-- base_comment_template/i18n/en_GB.po | 7 ++-- base_comment_template/i18n/es.po | 36 +++++++++--------- base_comment_template/i18n/es_AR.po | 7 ++-- base_comment_template/i18n/es_CL.po | 7 ++-- base_comment_template/i18n/es_CO.po | 7 ++-- base_comment_template/i18n/es_CR.po | 7 ++-- base_comment_template/i18n/es_DO.po | 7 ++-- base_comment_template/i18n/es_EC.po | 7 ++-- base_comment_template/i18n/es_ES.po | 7 ++-- base_comment_template/i18n/es_MX.po | 7 ++-- base_comment_template/i18n/es_PE.po | 7 ++-- base_comment_template/i18n/es_PY.po | 7 ++-- base_comment_template/i18n/es_VE.po | 7 ++-- base_comment_template/i18n/et.po | 4 +- base_comment_template/i18n/eu.po | 4 +- base_comment_template/i18n/fa.po | 4 +- base_comment_template/i18n/fi.po | 4 +- base_comment_template/i18n/fr.po | 4 +- base_comment_template/i18n/fr_CA.po | 7 ++-- base_comment_template/i18n/fr_CH.po | 7 ++-- base_comment_template/i18n/gl.po | 4 +- base_comment_template/i18n/gl_ES.po | 7 ++-- base_comment_template/i18n/he.po | 4 +- base_comment_template/i18n/hr.po | 10 +++-- base_comment_template/i18n/hr_HR.po | 10 +++-- base_comment_template/i18n/hu.po | 4 +- base_comment_template/i18n/id.po | 4 +- base_comment_template/i18n/it.po | 4 +- base_comment_template/i18n/ja.po | 4 +- base_comment_template/i18n/ko.po | 4 +- base_comment_template/i18n/lt.po | 7 ++-- base_comment_template/i18n/lt_LT.po | 10 +++-- base_comment_template/i18n/lv.po | 7 ++-- base_comment_template/i18n/mk.po | 4 +- base_comment_template/i18n/mn.po | 4 +- base_comment_template/i18n/nb.po | 7 ++-- base_comment_template/i18n/nb_NO.po | 7 ++-- base_comment_template/i18n/nl.po | 4 +- base_comment_template/i18n/nl_BE.po | 7 ++-- base_comment_template/i18n/nl_NL.po | 7 ++-- base_comment_template/i18n/pl.po | 8 ++-- base_comment_template/i18n/pt.po | 4 +- base_comment_template/i18n/pt_BR.po | 7 ++-- base_comment_template/i18n/pt_PT.po | 7 ++-- base_comment_template/i18n/ro.po | 7 ++-- base_comment_template/i18n/ru.po | 8 ++-- base_comment_template/i18n/sk.po | 4 +- base_comment_template/i18n/sl.po | 7 ++-- base_comment_template/i18n/sr.po | 7 ++-- base_comment_template/i18n/sr@latin.po | 10 +++-- base_comment_template/i18n/sv.po | 4 +- base_comment_template/i18n/th.po | 4 +- base_comment_template/i18n/tr.po | 4 +- base_comment_template/i18n/tr_TR.po | 7 ++-- base_comment_template/i18n/uk.po | 7 ++-- base_comment_template/i18n/vi.po | 4 +- base_comment_template/i18n/vi_VN.po | 7 ++-- base_comment_template/i18n/zh_CN.po | 7 ++-- base_comment_template/i18n/zh_TW.po | 7 ++-- 69 files changed, 264 insertions(+), 212 deletions(-) diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po index 415d51b3d..90fd00d63 100644 --- a/base_comment_template/i18n/am.po +++ b/base_comment_template/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po index b99caf712..d26f23581 100644 --- a/base_comment_template/i18n/ar.po +++ b/base_comment_template/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot index 242e5bdcb..0af191123 100644 --- a/base_comment_template/i18n/base_comment_template.pot +++ b/base_comment_template/i18n/base_comment_template.pot @@ -4,10 +4,8 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.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" @@ -31,55 +29,65 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: field:base.comment.template,text:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text 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 +#: 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 -#: field:base.comment.template,name:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name msgid "Comment summary" msgstr "" #. module: base_comment_template -#: field:base.comment.template,create_uid:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid msgid "Created by" msgstr "" #. module: base_comment_template -#: field:base.comment.template,create_date:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date msgid "Created on" msgstr "" #. module: base_comment_template -#: field:base.comment.template,id:0 +#: 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 -#: field:base.comment.template,write_uid:0 +#: 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 -#: field:base.comment.template,write_date:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_date msgid "Last Updated on" msgstr "" #. module: base_comment_template -#: field:base.comment.template,position:0 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_position msgid "Position" msgstr "" #. module: base_comment_template -#: help:base.comment.template,position:0 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po index 9cde6bb6b..f01fe8ba3 100644 --- a/base_comment_template/i18n/bg.po +++ b/base_comment_template/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po index d00d92fc6..0e9c5a056 100644 --- a/base_comment_template/i18n/bs.po +++ b/base_comment_template/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po index b1dfe2da4..65e87595d 100644 --- a/base_comment_template/i18n/ca.po +++ b/base_comment_template/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po index 32e78810a..c69e43206 100644 --- a/base_comment_template/i18n/cs.po +++ b/base_comment_template/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po index 4b1a17e19..685ab7118 100644 --- a/base_comment_template/i18n/da.po +++ b/base_comment_template/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po index c3513c2d4..394905843 100644 --- a/base_comment_template/i18n/de.po +++ b/base_comment_template/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po index a52d6b47d..d8267018a 100644 --- a/base_comment_template/i18n/el_GR.po +++ b/base_comment_template/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po index 8bacebeb2..9bf3c3da5 100644 --- a/base_comment_template/i18n/en_GB.po +++ b/base_comment_template/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po index bf5883ac5..45c16254b 100644 --- a/base_comment_template/i18n/es.po +++ b/base_comment_template/i18n/es.po @@ -1,44 +1,42 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: -# OCA Transbot , 2017 -# Antonio Trueba , 2017 -# Pedro M. Baeza , 2017 +# enjolras , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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: Pedro M. Baeza , 2017\n" +"POT-Creation-Date: 2018-01-05 01:40+0000\n" +"PO-Revision-Date: 2018-01-05 01:40+0000\n" +"Last-Translator: enjolras , 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" -"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 "" +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 "" +msgstr "Plantilla de comentario base" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "Before lines" -msgstr "" +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 "Comentarios" +msgstr "Comentario" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template @@ -46,12 +44,12 @@ msgstr "Comentarios" #: 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 comentario" +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 "" +msgstr "Índice de comentarios" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid @@ -81,19 +79,19 @@ 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 última vez por" +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 "Actualizado por última vez el" +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ón" +msgstr "Posició" #. module: base_comment_template #: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position msgid "Position on document" -msgstr "" +msgstr "Posición en el documento" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po index 6cb21f280..cc601b591 100644 --- a/base_comment_template/i18n/es_AR.po +++ b/base_comment_template/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_CL.po b/base_comment_template/i18n/es_CL.po index 0cca0fe30..e8d688393 100644 --- a/base_comment_template/i18n/es_CL.po +++ b/base_comment_template/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_CO.po b/base_comment_template/i18n/es_CO.po index 8d87355fa..adc1af3ab 100644 --- a/base_comment_template/i18n/es_CO.po +++ b/base_comment_template/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_CR.po b/base_comment_template/i18n/es_CR.po index b16b085e5..dffcfef7a 100644 --- a/base_comment_template/i18n/es_CR.po +++ b/base_comment_template/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_DO.po b/base_comment_template/i18n/es_DO.po index 5bef8f7fa..6b9e686b8 100644 --- a/base_comment_template/i18n/es_DO.po +++ b/base_comment_template/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_EC.po b/base_comment_template/i18n/es_EC.po index ccda6d633..e99d6a595 100644 --- a/base_comment_template/i18n/es_EC.po +++ b/base_comment_template/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_ES.po b/base_comment_template/i18n/es_ES.po index 74e5516a3..48cc6b2f3 100644 --- a/base_comment_template/i18n/es_ES.po +++ b/base_comment_template/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_MX.po b/base_comment_template/i18n/es_MX.po index 01aede875..9bbb1bea6 100644 --- a/base_comment_template/i18n/es_MX.po +++ b/base_comment_template/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_PE.po b/base_comment_template/i18n/es_PE.po index 2ef2a3505..11c49dcc5 100644 --- a/base_comment_template/i18n/es_PE.po +++ b/base_comment_template/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_PY.po b/base_comment_template/i18n/es_PY.po index 9b5d59326..b7be03b47 100644 --- a/base_comment_template/i18n/es_PY.po +++ b/base_comment_template/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/es_VE.po b/base_comment_template/i18n/es_VE.po index 0a03c6b68..59348c714 100644 --- a/base_comment_template/i18n/es_VE.po +++ b/base_comment_template/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/et.po b/base_comment_template/i18n/et.po index de15afa58..58d03e32b 100644 --- a/base_comment_template/i18n/et.po +++ b/base_comment_template/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/eu.po b/base_comment_template/i18n/eu.po index 768db7154..6069fec84 100644 --- a/base_comment_template/i18n/eu.po +++ b/base_comment_template/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/fa.po b/base_comment_template/i18n/fa.po index 83d36728e..83db34af3 100644 --- a/base_comment_template/i18n/fa.po +++ b/base_comment_template/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/fi.po b/base_comment_template/i18n/fi.po index 7e4962183..cc39d2fb2 100644 --- a/base_comment_template/i18n/fi.po +++ b/base_comment_template/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po index 67ebaf10b..c94b88945 100644 --- a/base_comment_template/i18n/fr.po +++ b/base_comment_template/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/fr_CA.po b/base_comment_template/i18n/fr_CA.po index bb29b463d..edeb8d8c6 100644 --- a/base_comment_template/i18n/fr_CA.po +++ b/base_comment_template/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/fr_CH.po b/base_comment_template/i18n/fr_CH.po index 695f99221..6ac62878e 100644 --- a/base_comment_template/i18n/fr_CH.po +++ b/base_comment_template/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po index 11e7d1033..0ee29abdd 100644 --- a/base_comment_template/i18n/gl.po +++ b/base_comment_template/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po index 06d4365a2..e333a1268 100644 --- a/base_comment_template/i18n/gl_ES.po +++ b/base_comment_template/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/he.po b/base_comment_template/i18n/he.po index 83047d952..e2df9c1c4 100644 --- a/base_comment_template/i18n/he.po +++ b/base_comment_template/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/hr.po b/base_comment_template/i18n/hr.po index 4e84aa55d..607e77dd0 100644 --- a/base_comment_template/i18n/hr.po +++ b/base_comment_template/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Ana-Maria Olujić , 2017 @@ -11,13 +11,15 @@ msgstr "" "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ć , 2017\n" +"Last-Translator: Ana-Maria Olujić , " +"2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/hr_HR.po b/base_comment_template/i18n/hr_HR.po index d649a42e8..e9e21a910 100644 --- a/base_comment_template/i18n/hr_HR.po +++ b/base_comment_template/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/hu.po b/base_comment_template/i18n/hu.po index 1a83db933..0ab21bf59 100644 --- a/base_comment_template/i18n/hu.po +++ b/base_comment_template/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/id.po b/base_comment_template/i18n/id.po index b1f935b73..04012f23c 100644 --- a/base_comment_template/i18n/id.po +++ b/base_comment_template/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/it.po b/base_comment_template/i18n/it.po index 463ea5025..c2cffa2cc 100644 --- a/base_comment_template/i18n/it.po +++ b/base_comment_template/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: Paolo Valier , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po index d0770995e..fb62298b4 100644 --- a/base_comment_template/i18n/ja.po +++ b/base_comment_template/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/ko.po b/base_comment_template/i18n/ko.po index 0d3ab6c99..618b8cf63 100644 --- a/base_comment_template/i18n/ko.po +++ b/base_comment_template/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/lt.po b/base_comment_template/i18n/lt.po index 8d5835da0..36cf94aa4 100644 --- a/base_comment_template/i18n/lt.po +++ b/base_comment_template/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/lt_LT.po b/base_comment_template/i18n/lt_LT.po index 2fac99beb..737677ad0 100644 --- a/base_comment_template/i18n/lt_LT.po +++ b/base_comment_template/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/lv.po b/base_comment_template/i18n/lv.po index c9564021a..7b0b92734 100644 --- a/base_comment_template/i18n/lv.po +++ b/base_comment_template/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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 diff --git a/base_comment_template/i18n/mk.po b/base_comment_template/i18n/mk.po index fd4d67ee2..1876f88d6 100644 --- a/base_comment_template/i18n/mk.po +++ b/base_comment_template/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/mn.po b/base_comment_template/i18n/mn.po index 069f2d361..b7ae48313 100644 --- a/base_comment_template/i18n/mn.po +++ b/base_comment_template/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/nb.po b/base_comment_template/i18n/nb.po index 099eedff4..d73d3b524 100644 --- a/base_comment_template/i18n/nb.po +++ b/base_comment_template/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/nb_NO.po b/base_comment_template/i18n/nb_NO.po index da5232ff1..b332275ef 100644 --- a/base_comment_template/i18n/nb_NO.po +++ b/base_comment_template/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/nl.po b/base_comment_template/i18n/nl.po index a7e3146be..b21bd8162 100644 --- a/base_comment_template/i18n/nl.po +++ b/base_comment_template/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/nl_BE.po b/base_comment_template/i18n/nl_BE.po index 8a6c793c5..9882e4ff6 100644 --- a/base_comment_template/i18n/nl_BE.po +++ b/base_comment_template/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/nl_NL.po b/base_comment_template/i18n/nl_NL.po index 6e7453929..2e514f440 100644 --- a/base_comment_template/i18n/nl_NL.po +++ b/base_comment_template/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-06-30 23:41+0000\n" "PO-Revision-Date: 2017-06-30 23:41+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/pl.po b/base_comment_template/i18n/pl.po index 218d5f0c9..d69916a7c 100644 --- a/base_comment_template/i18n/pl.po +++ b/base_comment_template/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po index 0631b92b5..961735123 100644 --- a/base_comment_template/i18n/pt.po +++ b/base_comment_template/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po index 748cbee69..8c7376403 100644 --- a/base_comment_template/i18n/pt_BR.po +++ b/base_comment_template/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po index c57ec95ab..5e7b73998 100644 --- a/base_comment_template/i18n/pt_PT.po +++ b/base_comment_template/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/ro.po b/base_comment_template/i18n/ro.po index 995e3045e..443f6b515 100644 --- a/base_comment_template/i18n/ro.po +++ b/base_comment_template/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\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 diff --git a/base_comment_template/i18n/ru.po b/base_comment_template/i18n/ru.po index 7a93ccdd0..9aece3803 100644 --- a/base_comment_template/i18n/ru.po +++ b/base_comment_template/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/sk.po b/base_comment_template/i18n/sk.po index 19d3b2756..edfd37d21 100644 --- a/base_comment_template/i18n/sk.po +++ b/base_comment_template/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/sl.po b/base_comment_template/i18n/sl.po index a1459b7af..0443aaade 100644 --- a/base_comment_template/i18n/sl.po +++ b/base_comment_template/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 # Matjaž Mozetič , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: Matjaž Mozetič , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/sr.po b/base_comment_template/i18n/sr.po index d54c36f82..c16f6d3e6 100644 --- a/base_comment_template/i18n/sr.po +++ b/base_comment_template/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/sr@latin.po b/base_comment_template/i18n/sr@latin.po index 2ee51217a..e3542bce4 100644 --- a/base_comment_template/i18n/sr@latin.po +++ b/base_comment_template/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/sv.po b/base_comment_template/i18n/sv.po index 1afa50a17..7ed62b8a8 100644 --- a/base_comment_template/i18n/sv.po +++ b/base_comment_template/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/th.po b/base_comment_template/i18n/th.po index 1fb60ca5e..eb35fdc65 100644 --- a/base_comment_template/i18n/th.po +++ b/base_comment_template/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/tr.po b/base_comment_template/i18n/tr.po index c9cd3919b..7fd3f446c 100644 --- a/base_comment_template/i18n/tr.po +++ b/base_comment_template/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/tr_TR.po b/base_comment_template/i18n/tr_TR.po index 2c32a0e0f..a09835a94 100644 --- a/base_comment_template/i18n/tr_TR.po +++ b/base_comment_template/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/uk.po b/base_comment_template/i18n/uk.po index 5bd525498..e85d4b991 100644 --- a/base_comment_template/i18n/uk.po +++ b/base_comment_template/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 diff --git a/base_comment_template/i18n/vi.po b/base_comment_template/i18n/vi.po index 1e8111d20..da54ca39f 100644 --- a/base_comment_template/i18n/vi.po +++ b/base_comment_template/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/vi_VN.po b/base_comment_template/i18n/vi_VN.po index 448bfbcf4..87a0d8dbb 100644 --- a/base_comment_template/i18n/vi_VN.po +++ b/base_comment_template/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/zh_CN.po b/base_comment_template/i18n/zh_CN.po index 6f8600319..843ebffb0 100644 --- a/base_comment_template/i18n/zh_CN.po +++ b/base_comment_template/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template diff --git a/base_comment_template/i18n/zh_TW.po b/base_comment_template/i18n/zh_TW.po index 584e32bd4..dc84aeca2 100644 --- a/base_comment_template/i18n/zh_TW.po +++ b/base_comment_template/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_comment_template -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2017-05-16 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_comment_template From e9c5502ad65a762acf8b088e041e328df68ee820 Mon Sep 17 00:00:00 2001 From: xavierjimenez Date: Mon, 30 Jul 2018 16:55:22 +0200 Subject: [PATCH 06/20] [MIG] base_comment_template: Migration to 11.0 --- base_comment_template/README.rst | 69 ++- base_comment_template/__init__.py | 1 - base_comment_template/__manifest__.py | 7 +- .../i18n/base_comment_template.pot | 2 +- base_comment_template/models/__init__.py | 1 - base_comment_template/models/comment.py | 1 - base_comment_template/readme/CONTRIBUTORS.rst | 7 + base_comment_template/readme/DESCRIPTION.rst | 13 + .../static/description/index.html | 434 ++++++++++++++++++ 9 files changed, 508 insertions(+), 27 deletions(-) create mode 100755 base_comment_template/readme/CONTRIBUTORS.rst create mode 100755 base_comment_template/readme/DESCRIPTION.rst create mode 100644 base_comment_template/static/description/index.html diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index 05c00bbae..c08327b8b 100644 --- a/base_comment_template/README.rst +++ b/base_comment_template/README.rst @@ -1,11 +1,30 @@ -.. 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 ======================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github + :target: https://github.com/OCA/account-invoice-reporting/tree/11.0/base_comment_template + :alt: OCA/account-invoice-reporting +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-11-0/account-invoice-reporting-11-0-base_comment_template + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/94/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + Add a new model to define templates of comments to print on documents. @@ -19,24 +38,34 @@ This module is the base module for following modules: * 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 +**Table of contents** + +.. contents:: + :local: Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp Contributors ------------- +~~~~~~~~~~~~ +* Xavier Jimenez * Nicolas Bessi * Yannick Vaucher * Guewen Baconnier @@ -44,17 +73,19 @@ Contributors Do not contact contributors directly about support or help with technical issues. -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py index a77a6fcbc..83e553ac4 100644 --- a/base_comment_template/__init__.py +++ b/base_comment_template/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py index 010b7fb8a..8ea1ace96 100644 --- a/base_comment_template/__manifest__.py +++ b/base_comment_template/__manifest__.py @@ -1,15 +1,14 @@ -# -*- 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": "10.0.1.0.0", + "version": "11.0.1.0.0", "depends": ["base"], - "author": "Camptocamp,Odoo Community Association (OCA)", + "author": "Camptocamp, Odoo Community Association (OCA)", "license": "AGPL-3", "data": ["views/comment_view.xml", - 'security/ir.model.access.csv', + "security/ir.model.access.csv", ], "category": "Sale", 'installable': True, diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot index 0af191123..ed9cb33fb 100644 --- a/base_comment_template/i18n/base_comment_template.pot +++ b/base_comment_template/i18n/base_comment_template.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py index 5cfb03321..fffa7ebd1 100644 --- a/base_comment_template/models/__init__.py +++ b/base_comment_template/models/__init__.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_comment_template/models/comment.py b/base_comment_template/models/comment.py index 3b4ae9865..2b8e9426d 100644 --- a/base_comment_template/models/comment.py +++ b/base_comment_template/models/comment.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_comment_template/readme/CONTRIBUTORS.rst b/base_comment_template/readme/CONTRIBUTORS.rst new file mode 100755 index 000000000..f7f8aafd5 --- /dev/null +++ b/base_comment_template/readme/CONTRIBUTORS.rst @@ -0,0 +1,7 @@ +* Xavier Jimenez +* Nicolas Bessi +* Yannick Vaucher +* Guewen Baconnier +* Simone Rubino + +Do not contact contributors directly about support or help with technical issues. \ No newline at end of file diff --git a/base_comment_template/readme/DESCRIPTION.rst b/base_comment_template/readme/DESCRIPTION.rst new file mode 100755 index 000000000..289173b4b --- /dev/null +++ b/base_comment_template/readme/DESCRIPTION.rst @@ -0,0 +1,13 @@ +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 + diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html new file mode 100644 index 000000000..e475da093 --- /dev/null +++ b/base_comment_template/static/description/index.html @@ -0,0 +1,434 @@ + + + + + + +Base Comments Templates + + + +
+

Base Comments Templates

+ + +

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

+

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
  • +
+

Table of contents

+ +
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +

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

+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

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

+

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

+
+
+
+ + From 9fb9be3c35d464893e569cdbff1e5ccacbbfa98e Mon Sep 17 00:00:00 2001 From: Raf Ven Date: Wed, 26 Dec 2018 20:56:21 +0100 Subject: [PATCH 07/20] [MIG] base_comment_template: Migration to 12.0 --- base_comment_template/README.rst | 14 ++-- base_comment_template/__manifest__.py | 29 ++++---- base_comment_template/i18n/am.po | 27 ++++---- base_comment_template/i18n/ar.po | 27 ++++---- .../i18n/base_comment_template.pot | 29 ++++---- base_comment_template/i18n/bg.po | 27 ++++---- base_comment_template/i18n/bs.po | 27 ++++---- base_comment_template/i18n/ca.po | 27 ++++---- base_comment_template/i18n/cs.po | 27 ++++---- base_comment_template/i18n/da.po | 27 ++++---- base_comment_template/i18n/de.po | 27 ++++---- base_comment_template/i18n/el_GR.po | 27 ++++---- base_comment_template/i18n/en_GB.po | 27 ++++---- base_comment_template/i18n/es.po | 27 ++++---- base_comment_template/i18n/es_AR.po | 27 ++++---- base_comment_template/i18n/es_CL.po | 27 ++++---- base_comment_template/i18n/es_CO.po | 27 ++++---- base_comment_template/i18n/es_CR.po | 27 ++++---- base_comment_template/i18n/es_DO.po | 27 ++++---- base_comment_template/i18n/es_EC.po | 27 ++++---- base_comment_template/i18n/es_ES.po | 27 ++++---- base_comment_template/i18n/es_MX.po | 27 ++++---- base_comment_template/i18n/es_PE.po | 27 ++++---- base_comment_template/i18n/es_PY.po | 27 ++++---- base_comment_template/i18n/es_VE.po | 27 ++++---- base_comment_template/i18n/et.po | 27 ++++---- base_comment_template/i18n/eu.po | 27 ++++---- base_comment_template/i18n/fa.po | 27 ++++---- base_comment_template/i18n/fi.po | 27 ++++---- base_comment_template/i18n/fr.po | 27 ++++---- base_comment_template/i18n/fr_CA.po | 27 ++++---- base_comment_template/i18n/fr_CH.po | 27 ++++---- base_comment_template/i18n/gl.po | 27 ++++---- base_comment_template/i18n/gl_ES.po | 27 ++++---- base_comment_template/i18n/he.po | 27 ++++---- base_comment_template/i18n/hr.po | 27 ++++---- base_comment_template/i18n/hr_HR.po | 27 ++++---- base_comment_template/i18n/hu.po | 27 ++++---- base_comment_template/i18n/id.po | 27 ++++---- base_comment_template/i18n/it.po | 27 ++++---- base_comment_template/i18n/ja.po | 27 ++++---- base_comment_template/i18n/ko.po | 27 ++++---- base_comment_template/i18n/lt.po | 27 ++++---- base_comment_template/i18n/lt_LT.po | 27 ++++---- base_comment_template/i18n/lv.po | 27 ++++---- base_comment_template/i18n/mk.po | 27 ++++---- base_comment_template/i18n/mn.po | 27 ++++---- base_comment_template/i18n/nb.po | 27 ++++---- base_comment_template/i18n/nb_NO.po | 27 ++++---- base_comment_template/i18n/nl.po | 27 ++++---- base_comment_template/i18n/nl_BE.po | 27 ++++---- base_comment_template/i18n/nl_NL.po | 27 ++++---- base_comment_template/i18n/pl.po | 27 ++++---- base_comment_template/i18n/pt.po | 27 ++++---- base_comment_template/i18n/pt_BR.po | 27 ++++---- base_comment_template/i18n/pt_PT.po | 27 ++++---- base_comment_template/i18n/ro.po | 27 ++++---- base_comment_template/i18n/ru.po | 27 ++++---- base_comment_template/i18n/sk.po | 27 ++++---- base_comment_template/i18n/sl.po | 27 ++++---- base_comment_template/i18n/sr.po | 27 ++++---- base_comment_template/i18n/sr@latin.po | 27 ++++---- base_comment_template/i18n/sv.po | 27 ++++---- base_comment_template/i18n/th.po | 27 ++++---- base_comment_template/i18n/tr.po | 27 ++++---- base_comment_template/i18n/tr_TR.po | 27 ++++---- base_comment_template/i18n/uk.po | 27 ++++---- base_comment_template/i18n/vi.po | 27 ++++---- base_comment_template/i18n/vi_VN.po | 27 ++++---- base_comment_template/i18n/zh_CN.po | 27 ++++---- base_comment_template/i18n/zh_TW.po | 27 ++++---- base_comment_template/models/__init__.py | 2 - base_comment_template/models/comment.py | 26 ++++--- base_comment_template/readme/CONTRIBUTORS.rst | 4 +- .../static/description/index.html | 12 ++-- base_comment_template/views/comment_view.xml | 68 +++++++++---------- 76 files changed, 986 insertions(+), 1034 deletions(-) diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index c08327b8b..fbe08e30a 100644 --- a/base_comment_template/README.rst +++ b/base_comment_template/README.rst @@ -14,13 +14,13 @@ Base Comments Templates :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github - :target: https://github.com/OCA/account-invoice-reporting/tree/11.0/base_comment_template + :target: https://github.com/OCA/account-invoice-reporting/tree/12.0/base_comment_template :alt: OCA/account-invoice-reporting .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-invoice-reporting-11-0/account-invoice-reporting-11-0-base_comment_template + :target: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-base_comment_template :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/94/11.0 + :target: https://runbot.odoo-community.org/runbot/94/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -50,7 +50,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -70,8 +70,10 @@ Contributors * Yannick Vaucher * Guewen Baconnier * Simone Rubino +* Simone Rubino +* `DynApps `_: -Do not contact contributors directly about support or help with technical issues. + * Raf Ven Maintainers ~~~~~~~~~~~ @@ -86,6 +88,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. +This module is part of the `OCA/account-invoice-reporting `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py index 8ea1ace96..eaa2d8a9d 100644 --- a/base_comment_template/__manifest__.py +++ b/base_comment_template/__manifest__.py @@ -1,15 +1,20 @@ # © 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, - } +{ + "name": "Base Comments Templates", + "summary": "Comments templates on documents", + "version": "12.0.1.0.0", + "category": "Sale", + "website": "https://github.com/OCA/account-invoice-reporting", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": [ + "base" + ], + "data": [ + "security/ir.model.access.csv", + "views/comment_view.xml", + ], +} diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po index 90fd00d63..3fc4cae7a 100644 --- a/base_comment_template/i18n/am.po +++ b/base_comment_template/i18n/am.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po index d26f23581..99df1233c 100644 --- a/base_comment_template/i18n/ar.po +++ b/base_comment_template/i18n/ar.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "أنشئ في" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot index ed9cb33fb..b43493289 100644 --- a/base_comment_template/i18n/base_comment_template.pot +++ b/base_comment_template/i18n/base_comment_template.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -29,65 +29,64 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po index f01fe8ba3..184ca7ac3 100644 --- a/base_comment_template/i18n/bg.po +++ b/base_comment_template/i18n/bg.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Създадено на" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po index 0e9c5a056..fe9b18da7 100644 --- a/base_comment_template/i18n/bs.po +++ b/base_comment_template/i18n/bs.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po index 65e87595d..b361a8aa4 100644 --- a/base_comment_template/i18n/ca.po +++ b/base_comment_template/i18n/ca.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po index c69e43206..849b451ef 100644 --- a/base_comment_template/i18n/cs.po +++ b/base_comment_template/i18n/cs.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po index 685ab7118..a1a9d8807 100644 --- a/base_comment_template/i18n/da.po +++ b/base_comment_template/i18n/da.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po index 394905843..5b418d981 100644 --- a/base_comment_template/i18n/de.po +++ b/base_comment_template/i18n/de.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "Vor Positionen" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model: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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "Vorlagen zu Bemerkungen" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "Position im Dokument" diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po index d8267018a..a3d5cbbec 100644 --- a/base_comment_template/i18n/el_GR.po +++ b/base_comment_template/i18n/el_GR.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po index 9bf3c3da5..381386bb7 100644 --- a/base_comment_template/i18n/en_GB.po +++ b/base_comment_template/i18n/en_GB.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po index 45c16254b..1b7e3f770 100644 --- a/base_comment_template/i18n/es.po +++ b/base_comment_template/i18n/es.po @@ -34,64 +34,63 @@ 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 +#: 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "Plantillas de comentarios" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Creado el" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "Posición en el documento" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po index cc601b591..62fa5c296 100644 --- a/base_comment_template/i18n/es_AR.po +++ b/base_comment_template/i18n/es_AR.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_CL.po b/base_comment_template/i18n/es_CL.po index e8d688393..1e2d1ea8d 100644 --- a/base_comment_template/i18n/es_CL.po +++ b/base_comment_template/i18n/es_CL.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_CO.po b/base_comment_template/i18n/es_CO.po index adc1af3ab..7b86a5369 100644 --- a/base_comment_template/i18n/es_CO.po +++ b/base_comment_template/i18n/es_CO.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_CR.po b/base_comment_template/i18n/es_CR.po index dffcfef7a..7cc7ccab4 100644 --- a/base_comment_template/i18n/es_CR.po +++ b/base_comment_template/i18n/es_CR.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_DO.po b/base_comment_template/i18n/es_DO.po index 6b9e686b8..f8cc38ed4 100644 --- a/base_comment_template/i18n/es_DO.po +++ b/base_comment_template/i18n/es_DO.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_EC.po b/base_comment_template/i18n/es_EC.po index e99d6a595..de1015552 100644 --- a/base_comment_template/i18n/es_EC.po +++ b/base_comment_template/i18n/es_EC.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_ES.po b/base_comment_template/i18n/es_ES.po index 48cc6b2f3..027d6edf9 100644 --- a/base_comment_template/i18n/es_ES.po +++ b/base_comment_template/i18n/es_ES.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_MX.po b/base_comment_template/i18n/es_MX.po index 9bbb1bea6..887189e14 100644 --- a/base_comment_template/i18n/es_MX.po +++ b/base_comment_template/i18n/es_MX.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_PE.po b/base_comment_template/i18n/es_PE.po index 11c49dcc5..124c602f9 100644 --- a/base_comment_template/i18n/es_PE.po +++ b/base_comment_template/i18n/es_PE.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_PY.po b/base_comment_template/i18n/es_PY.po index b7be03b47..4b75fbea4 100644 --- a/base_comment_template/i18n/es_PY.po +++ b/base_comment_template/i18n/es_PY.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/es_VE.po b/base_comment_template/i18n/es_VE.po index 59348c714..d8b6b758b 100644 --- a/base_comment_template/i18n/es_VE.po +++ b/base_comment_template/i18n/es_VE.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/et.po b/base_comment_template/i18n/et.po index 58d03e32b..aca255d82 100644 --- a/base_comment_template/i18n/et.po +++ b/base_comment_template/i18n/et.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/eu.po b/base_comment_template/i18n/eu.po index 6069fec84..aea53b9df 100644 --- a/base_comment_template/i18n/eu.po +++ b/base_comment_template/i18n/eu.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/fa.po b/base_comment_template/i18n/fa.po index 83db34af3..a6c75a957 100644 --- a/base_comment_template/i18n/fa.po +++ b/base_comment_template/i18n/fa.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "ایجاد شده در" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/fi.po b/base_comment_template/i18n/fi.po index cc39d2fb2..57bbbbc5e 100644 --- a/base_comment_template/i18n/fi.po +++ b/base_comment_template/i18n/fi.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po index c94b88945..80609a996 100644 --- a/base_comment_template/i18n/fr.po +++ b/base_comment_template/i18n/fr.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "Avant les lignes" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model: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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "Modèles de commentaires" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "Position sur le document" diff --git a/base_comment_template/i18n/fr_CA.po b/base_comment_template/i18n/fr_CA.po index edeb8d8c6..308e1b9b7 100644 --- a/base_comment_template/i18n/fr_CA.po +++ b/base_comment_template/i18n/fr_CA.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/fr_CH.po b/base_comment_template/i18n/fr_CH.po index 6ac62878e..9faeca39e 100644 --- a/base_comment_template/i18n/fr_CH.po +++ b/base_comment_template/i18n/fr_CH.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po index 0ee29abdd..18794b68a 100644 --- a/base_comment_template/i18n/gl.po +++ b/base_comment_template/i18n/gl.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po index e333a1268..374dd2bed 100644 --- a/base_comment_template/i18n/gl_ES.po +++ b/base_comment_template/i18n/gl_ES.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/he.po b/base_comment_template/i18n/he.po index e2df9c1c4..a7d0a5a26 100644 --- a/base_comment_template/i18n/he.po +++ b/base_comment_template/i18n/he.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "נוצר ב-" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/hr.po b/base_comment_template/i18n/hr.po index 607e77dd0..f46cf6eb9 100644 --- a/base_comment_template/i18n/hr.po +++ b/base_comment_template/i18n/hr.po @@ -37,64 +37,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/hr_HR.po b/base_comment_template/i18n/hr_HR.po index e9e21a910..1a894ee04 100644 --- a/base_comment_template/i18n/hr_HR.po +++ b/base_comment_template/i18n/hr_HR.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/hu.po b/base_comment_template/i18n/hu.po index 0ab21bf59..94964b75b 100644 --- a/base_comment_template/i18n/hu.po +++ b/base_comment_template/i18n/hu.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/id.po b/base_comment_template/i18n/id.po index 04012f23c..a9fb0b759 100644 --- a/base_comment_template/i18n/id.po +++ b/base_comment_template/i18n/id.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/it.po b/base_comment_template/i18n/it.po index c2cffa2cc..157d6eb4c 100644 --- a/base_comment_template/i18n/it.po +++ b/base_comment_template/i18n/it.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po index fb62298b4..4214370c7 100644 --- a/base_comment_template/i18n/ja.po +++ b/base_comment_template/i18n/ja.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "作成日" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ko.po b/base_comment_template/i18n/ko.po index 618b8cf63..593d499de 100644 --- a/base_comment_template/i18n/ko.po +++ b/base_comment_template/i18n/ko.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "작성일" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/lt.po b/base_comment_template/i18n/lt.po index 36cf94aa4..c57a03d1f 100644 --- a/base_comment_template/i18n/lt.po +++ b/base_comment_template/i18n/lt.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/lt_LT.po b/base_comment_template/i18n/lt_LT.po index 737677ad0..7d34cced2 100644 --- a/base_comment_template/i18n/lt_LT.po +++ b/base_comment_template/i18n/lt_LT.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/lv.po b/base_comment_template/i18n/lv.po index 7b0b92734..ff268ccff 100644 --- a/base_comment_template/i18n/lv.po +++ b/base_comment_template/i18n/lv.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/mk.po b/base_comment_template/i18n/mk.po index 1876f88d6..5120a7a9c 100644 --- a/base_comment_template/i18n/mk.po +++ b/base_comment_template/i18n/mk.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Креирано на" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/mn.po b/base_comment_template/i18n/mn.po index b7ae48313..0ea7a55b2 100644 --- a/base_comment_template/i18n/mn.po +++ b/base_comment_template/i18n/mn.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/nb.po b/base_comment_template/i18n/nb.po index d73d3b524..518d52b0e 100644 --- a/base_comment_template/i18n/nb.po +++ b/base_comment_template/i18n/nb.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/nb_NO.po b/base_comment_template/i18n/nb_NO.po index b332275ef..e8283fa57 100644 --- a/base_comment_template/i18n/nb_NO.po +++ b/base_comment_template/i18n/nb_NO.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/nl.po b/base_comment_template/i18n/nl.po index b21bd8162..1594390cb 100644 --- a/base_comment_template/i18n/nl.po +++ b/base_comment_template/i18n/nl.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/nl_BE.po b/base_comment_template/i18n/nl_BE.po index 9882e4ff6..f6d616790 100644 --- a/base_comment_template/i18n/nl_BE.po +++ b/base_comment_template/i18n/nl_BE.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/nl_NL.po b/base_comment_template/i18n/nl_NL.po index 2e514f440..54e93e1b2 100644 --- a/base_comment_template/i18n/nl_NL.po +++ b/base_comment_template/i18n/nl_NL.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/pl.po b/base_comment_template/i18n/pl.po index d69916a7c..b45a9c1d2 100644 --- a/base_comment_template/i18n/pl.po +++ b/base_comment_template/i18n/pl.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po index 961735123..b5c42e9ea 100644 --- a/base_comment_template/i18n/pt.po +++ b/base_comment_template/i18n/pt.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po index 8c7376403..3711e8656 100644 --- a/base_comment_template/i18n/pt_BR.po +++ b/base_comment_template/i18n/pt_BR.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po index 5e7b73998..efaf76970 100644 --- a/base_comment_template/i18n/pt_PT.po +++ b/base_comment_template/i18n/pt_PT.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ro.po b/base_comment_template/i18n/ro.po index 443f6b515..e158073f0 100644 --- a/base_comment_template/i18n/ro.po +++ b/base_comment_template/i18n/ro.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/ru.po b/base_comment_template/i18n/ru.po index 9aece3803..8f6650cf9 100644 --- a/base_comment_template/i18n/ru.po +++ b/base_comment_template/i18n/ru.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Создан" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/sk.po b/base_comment_template/i18n/sk.po index edfd37d21..c508938aa 100644 --- a/base_comment_template/i18n/sk.po +++ b/base_comment_template/i18n/sk.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/sl.po b/base_comment_template/i18n/sl.po index 0443aaade..5f3d2cf7b 100644 --- a/base_comment_template/i18n/sl.po +++ b/base_comment_template/i18n/sl.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "Pred postavkami" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model: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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "Predloge komentarjev" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "Pozicija na dokumentu" diff --git a/base_comment_template/i18n/sr.po b/base_comment_template/i18n/sr.po index c16f6d3e6..6b2432c30 100644 --- a/base_comment_template/i18n/sr.po +++ b/base_comment_template/i18n/sr.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/sr@latin.po b/base_comment_template/i18n/sr@latin.po index e3542bce4..7b47b6cc8 100644 --- a/base_comment_template/i18n/sr@latin.po +++ b/base_comment_template/i18n/sr@latin.po @@ -36,64 +36,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/sv.po b/base_comment_template/i18n/sv.po index 7ed62b8a8..07e466f3b 100644 --- a/base_comment_template/i18n/sv.po +++ b/base_comment_template/i18n/sv.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/th.po b/base_comment_template/i18n/th.po index eb35fdc65..5e78e2906 100644 --- a/base_comment_template/i18n/th.po +++ b/base_comment_template/i18n/th.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/tr.po b/base_comment_template/i18n/tr.po index 7fd3f446c..50417cb75 100644 --- a/base_comment_template/i18n/tr.po +++ b/base_comment_template/i18n/tr.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/tr_TR.po b/base_comment_template/i18n/tr_TR.po index a09835a94..e1685e0fa 100644 --- a/base_comment_template/i18n/tr_TR.po +++ b/base_comment_template/i18n/tr_TR.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/uk.po b/base_comment_template/i18n/uk.po index e85d4b991..498c843f8 100644 --- a/base_comment_template/i18n/uk.po +++ b/base_comment_template/i18n/uk.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "Дата створення" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/vi.po b/base_comment_template/i18n/vi.po index da54ca39f..1038ee624 100644 --- a/base_comment_template/i18n/vi.po +++ b/base_comment_template/i18n/vi.po @@ -34,64 +34,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/vi_VN.po b/base_comment_template/i18n/vi_VN.po index 87a0d8dbb..ecbdee56a 100644 --- a/base_comment_template/i18n/vi_VN.po +++ b/base_comment_template/i18n/vi_VN.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/zh_CN.po b/base_comment_template/i18n/zh_CN.po index 843ebffb0..c0919fea4 100644 --- a/base_comment_template/i18n/zh_CN.po +++ b/base_comment_template/i18n/zh_CN.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "创建时间" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/i18n/zh_TW.po b/base_comment_template/i18n/zh_TW.po index dc84aeca2..c6ecb2e1e 100644 --- a/base_comment_template/i18n/zh_TW.po +++ b/base_comment_template/i18n/zh_TW.po @@ -35,64 +35,63 @@ msgid "Before lines" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date msgid "Created on" msgstr "建立於" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +#: model:ir.model.fields,field_description:base_comment_template.field_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 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py index fffa7ebd1..4ad9af3c0 100644 --- a/base_comment_template/models/__init__.py +++ b/base_comment_template/models/__init__.py @@ -1,5 +1,3 @@ -# 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 diff --git a/base_comment_template/models/comment.py b/base_comment_template/models/comment.py index 2b8e9426d..0cd33e260 100644 --- a/base_comment_template/models/comment.py +++ b/base_comment_template/models/comment.py @@ -9,14 +9,24 @@ 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) + name = fields.Char( + string='Comment summary', + required=True + ) + position = fields.Selection( + selection=[ + ('before_lines', 'Before lines'), + ('after_lines', 'After lines') + ], + required=True, + default='before_lines', + help="Position on document" + ) + text = fields.Html( + string='Comment', + translate=True, + required=True + ) @api.multi def get_value(self, partner_id=False): diff --git a/base_comment_template/readme/CONTRIBUTORS.rst b/base_comment_template/readme/CONTRIBUTORS.rst index f7f8aafd5..ba762f7ec 100755 --- a/base_comment_template/readme/CONTRIBUTORS.rst +++ b/base_comment_template/readme/CONTRIBUTORS.rst @@ -3,5 +3,7 @@ * Yannick Vaucher * Guewen Baconnier * Simone Rubino +* Simone Rubino +* `DynApps `_: -Do not contact contributors directly about support or help with technical issues. \ No newline at end of file + * Raf Ven diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html index e475da093..134864b4e 100644 --- a/base_comment_template/static/description/index.html +++ b/base_comment_template/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/account-invoice-reporting Translate me on Weblate Try me on Runbot

Add a new model to define templates of comments to print on documents.

Two positions are available for the comments: @@ -396,7 +396,7 @@ documents.

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

+feedback.

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

@@ -415,8 +415,12 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
  • Yannick Vaucher <yannick.vaucher@camptocamp.com>
  • Guewen Baconnier <guewen.baconnier@camptocamp.com>
  • Simone Rubino <simone.rubino@agilebg.com>
  • +
  • Simone Rubino <simone.rubino@agilebg.com>
  • +
  • DynApps: +
  • -

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

    Maintainers

    @@ -425,7 +429,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

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

    -

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

    +

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

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

    diff --git a/base_comment_template/views/comment_view.xml b/base_comment_template/views/comment_view.xml index febb9abb5..c0cf9174f 100644 --- a/base_comment_template/views/comment_view.xml +++ b/base_comment_template/views/comment_view.xml @@ -2,49 +2,49 @@ - base.comment.template.search - base.comment.template - - - - - - + base.comment.template.search + base.comment.template + + + + + + - base.comment.template.form - base.comment.template - -
    - - - - - -
    -
    + base.comment.template.form + base.comment.template + +
    + + + + + +
    +
    - account.comment.template.list - base.comment.template - - - - - - - + account.comment.template.list + base.comment.template + + + + + + + - Comment Templates - ir.actions.act_window - base.comment.template - form - tree,form - + Comment Templates + ir.actions.act_window + base.comment.template + form + tree,form +
    From b3c2de7f18aff84663d1d3e62943399ad926cc1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20V=C3=A1zquez=20Rodr=C3=ADguez?= Date: Wed, 6 Feb 2019 12:08:27 +0000 Subject: [PATCH 08/20] Translated using Weblate (Galician) Currently translated at 100.0% (15 of 15 strings) Translation: account-invoice-reporting-12.0/account-invoice-reporting-12.0-base_comment_template Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-base_comment_template/gl/ --- base_comment_template/i18n/gl.po | 25 +++++++++--------- .../static/description/icon.png | Bin 0 -> 9455 bytes 2 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 base_comment_template/static/description/icon.png diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po index 18794b68a..bc74b9d25 100644 --- a/base_comment_template/i18n/gl.po +++ b/base_comment_template/i18n/gl.po @@ -9,46 +9,47 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-16 11:59+0000\n" -"PO-Revision-Date: 2017-05-16 11:59+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2019-02-06 14:50+0000\n" +"Last-Translator: Marta Vázquez Rodríguez \n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.4\n" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" -msgstr "" +msgstr "Despois das liñas" #. module: base_comment_template #: model:ir.model,name:base_comment_template.model_base_comment_template msgid "Base comment template" -msgstr "" +msgstr "Modelo do comentario base" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "Before lines" -msgstr "" +msgstr "Antes das liñas" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "Comment" -msgstr "" +msgstr "Comentario" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" -msgstr "" +msgstr "Modelos de comentarios" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name msgid "Comment summary" -msgstr "" +msgstr "Índice de comentarios" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid @@ -63,7 +64,7 @@ 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 "" +msgstr "Nome mostrado" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id @@ -88,9 +89,9 @@ 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 "" +msgstr "Posición" #. module: base_comment_template #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" -msgstr "" +msgstr "Posición no documento" diff --git a/base_comment_template/static/description/icon.png b/base_comment_template/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From c043cdd1355f10b73dbac729cd1afc86f27104c2 Mon Sep 17 00:00:00 2001 From: Yoshi Tashiro Date: Fri, 5 Jul 2019 02:20:19 +0000 Subject: [PATCH 09/20] Translated using Weblate (Japanese) Currently translated at 100.0% (15 of 15 strings) Translation: account-invoice-reporting-12.0/account-invoice-reporting-12.0-base_comment_template Translate-URL: https://translation.odoo-community.org/projects/account-invoice-reporting-12-0/account-invoice-reporting-12-0-base_comment_template/ja/ --- base_comment_template/i18n/ja.po | 21 ++++++++++--------- .../static/description/index.html | 2 +- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po index 4214370c7..efa8d67ee 100644 --- a/base_comment_template/i18n/ja.po +++ b/base_comment_template/i18n/ja.po @@ -9,46 +9,47 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-16 11:59+0000\n" -"PO-Revision-Date: 2017-05-16 11:59+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2019-07-05 04:42+0000\n" +"Last-Translator: Yoshi Tashiro \n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.7.1\n" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" -msgstr "" +msgstr "明細行後" #. module: base_comment_template #: model:ir.model,name:base_comment_template.model_base_comment_template msgid "Base comment template" -msgstr "" +msgstr "Base comment template" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "Before lines" -msgstr "" +msgstr "明細行前" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text msgid "Comment" -msgstr "" +msgstr "コメント" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form #: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search msgid "Comment Templates" -msgstr "" +msgstr "コメントテンプレート" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name msgid "Comment summary" -msgstr "" +msgstr "コメントサマリ" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid @@ -88,9 +89,9 @@ msgstr "最終更新日" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" -msgstr "" +msgstr "位置" #. module: base_comment_template #: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" -msgstr "" +msgstr "ドキュメント上の位置" diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html index 134864b4e..a6d6eb6e1 100644 --- a/base_comment_template/static/description/index.html +++ b/base_comment_template/static/description/index.html @@ -3,7 +3,7 @@ - + Base Comments Templates