From 14ebd7e618664d120202a1fac7d75b2b802bbbe7 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Mon, 8 Dec 2014 08:50:03 +0100 Subject: [PATCH 01/86] 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 0000000000..2383ed1a95 --- /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 0000000000..72bf49f6ce --- /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 0000000000..ba603c6220 --- /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 0000000000..eee893b969 --- /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 0000000000..5a6cbd6c81 --- /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 0000000000..242e5bdcb8 --- /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 0000000000..c05cfa4ff7 --- /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 0000000000..7485600f70 --- /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 7f235489c5663c4506286fc3f1e04bbb4b7df635 Mon Sep 17 00:00:00 2001 From: leNeo Date: Wed, 24 Aug 2016 18:53:04 +0200 Subject: [PATCH 02/86] [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 2383ed1a95..5ca2bad49d 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 72bf49f6ce..9dd1c5c2c9 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 ba603c6220..8cf47bc050 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 0000000000..72bf49f6ce --- /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 eee893b969..79032e12e5 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 850e5005b6d31f959e6f70adb8705c34a7c04025 Mon Sep 17 00:00:00 2001 From: Cedric Le Brouster Date: Mon, 19 Jun 2017 13:34:20 +0200 Subject: [PATCH 03/86] [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 5ca2bad49d..05c00bbae5 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 9dd1c5c2c9..a77a6fcbc5 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 0000000000..010b7fb8ac --- /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 8cf47bc050..0000000000 --- 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 72bf49f6ce..5cfb033211 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 79032e12e5..3b4ae98654 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 5a6cbd6c81..febb9abb5e 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 70ad0e6029666dab378a83c2787c0655d054860d Mon Sep 17 00:00:00 2001 From: xavierjimenez Date: Mon, 30 Jul 2018 16:55:22 +0200 Subject: [PATCH 04/86] [MIG] base_comment_template: Migration to 11.0 OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex --- base_comment_template/README.rst | 69 ++- base_comment_template/__init__.py | 1 - base_comment_template/__manifest__.py | 7 +- base_comment_template/i18n/am.po | 97 ++++ base_comment_template/i18n/ar.po | 98 ++++ .../i18n/base_comment_template.pot | 38 +- base_comment_template/i18n/bg.po | 97 ++++ base_comment_template/i18n/bs.po | 98 ++++ 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 | 98 ++++ base_comment_template/i18n/en_GB.po | 98 ++++ base_comment_template/i18n/es.po | 97 ++++ base_comment_template/i18n/es_AR.po | 98 ++++ base_comment_template/i18n/es_CL.po | 98 ++++ base_comment_template/i18n/es_CO.po | 98 ++++ base_comment_template/i18n/es_CR.po | 98 ++++ base_comment_template/i18n/es_DO.po | 98 ++++ base_comment_template/i18n/es_EC.po | 98 ++++ base_comment_template/i18n/es_ES.po | 98 ++++ base_comment_template/i18n/es_MX.po | 98 ++++ base_comment_template/i18n/es_PE.po | 98 ++++ base_comment_template/i18n/es_PY.po | 98 ++++ base_comment_template/i18n/es_VE.po | 98 ++++ 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 | 62 ++- base_comment_template/i18n/fr_CA.po | 98 ++++ base_comment_template/i18n/fr_CH.po | 98 ++++ base_comment_template/i18n/gl.po | 97 ++++ base_comment_template/i18n/gl_ES.po | 98 ++++ base_comment_template/i18n/he.po | 97 ++++ base_comment_template/i18n/hr.po | 100 ++++ base_comment_template/i18n/hr_HR.po | 99 ++++ 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 | 98 ++++ base_comment_template/i18n/lt_LT.po | 99 ++++ base_comment_template/i18n/lv.po | 98 ++++ base_comment_template/i18n/mk.po | 97 ++++ base_comment_template/i18n/mn.po | 97 ++++ base_comment_template/i18n/nb.po | 98 ++++ base_comment_template/i18n/nb_NO.po | 98 ++++ base_comment_template/i18n/nl.po | 97 ++++ base_comment_template/i18n/nl_BE.po | 98 ++++ base_comment_template/i18n/nl_NL.po | 99 ++++ base_comment_template/i18n/pl.po | 99 ++++ base_comment_template/i18n/pt.po | 97 ++++ base_comment_template/i18n/pt_BR.po | 98 ++++ base_comment_template/i18n/pt_PT.po | 98 ++++ base_comment_template/i18n/ro.po | 98 ++++ base_comment_template/i18n/ru.po | 99 ++++ base_comment_template/i18n/sk.po | 97 ++++ base_comment_template/i18n/sl.po | 99 ++++ base_comment_template/i18n/sr.po | 98 ++++ base_comment_template/i18n/sr@latin.po | 99 ++++ 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 | 98 ++++ base_comment_template/i18n/uk.po | 98 ++++ base_comment_template/i18n/vi.po | 97 ++++ base_comment_template/i18n/vi_VN.po | 98 ++++ base_comment_template/i18n/zh_CN.po | 98 ++++ base_comment_template/i18n/zh_TW.po | 98 ++++ 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 ++++++++++++++++++ 77 files changed, 7118 insertions(+), 66 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 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 05c00bbae5..c08327b8b5 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 a77a6fcbc5..83e553ac46 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 010b7fb8ac..8ea1ace960 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/am.po b/base_comment_template/i18n/am.po new file mode 100644 index 0000000000..90fd00d633 --- /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" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: 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 0000000000..d26f235817 --- /dev/null +++ b/base_comment_template/i18n/ar.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 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_comment_template +#: 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/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot index 242e5bdcb8..ed9cb33fb4 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 11.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 new file mode 100644 index 0000000000..f01fe8ba3d --- /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" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..0e9c5a056f --- /dev/null +++ b/base_comment_template/i18n/bs.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 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..65e87595d7 --- /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" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..c69e432069 --- /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" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_comment_template +#: 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 0000000000..685ab71181 --- /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" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..3949058434 --- /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" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..d8267018ae --- /dev/null +++ b/base_comment_template/i18n/el_GR.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 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..9bf3c3da5e --- /dev/null +++ b/base_comment_template/i18n/en_GB.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 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..45c16254b9 --- /dev/null +++ b/base_comment_template/i18n/es.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Después de las líneas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Plantilla de comentario base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes de las líneas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +msgid "Comment" +msgstr "Comentario" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +msgid "Comment Templates" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name +msgid "Comment summary" +msgstr "Índice de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +msgid "Created on" +msgstr "Creado el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template___last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +msgid "Last Updated by" +msgstr "Última modificación por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_date +msgid "Last Updated on" +msgstr "Última modificación el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_position +msgid "Position" +msgstr "Posició" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +msgid "Position on document" +msgstr "Posición en el documento" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po new file mode 100644 index 0000000000..cc601b5914 --- /dev/null +++ b/base_comment_template/i18n/es_AR.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 +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" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..e8d688393b --- /dev/null +++ b/base_comment_template/i18n/es_CL.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 +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" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..adc1af3ab2 --- /dev/null +++ b/base_comment_template/i18n/es_CO.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 +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" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..dffcfef7a7 --- /dev/null +++ b/base_comment_template/i18n/es_CR.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 +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" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..6b9e686b88 --- /dev/null +++ b/base_comment_template/i18n/es_DO.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 +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" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..e99d6a5951 --- /dev/null +++ b/base_comment_template/i18n/es_EC.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 +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" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..48cc6b2f31 --- /dev/null +++ b/base_comment_template/i18n/es_ES.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 +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" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..9bbb1bea67 --- /dev/null +++ b/base_comment_template/i18n/es_MX.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 +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" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..11c49dcc58 --- /dev/null +++ b/base_comment_template/i18n/es_PE.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 +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" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..b7be03b474 --- /dev/null +++ b/base_comment_template/i18n/es_PY.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 +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" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..59348c7149 --- /dev/null +++ b/base_comment_template/i18n/es_VE.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 +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" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..58d03e32b6 --- /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" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..6069fec846 --- /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" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..83db34af30 --- /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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..cc39d2fb22 --- /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" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 c05cfa4ff7..c94b889457 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" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \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 0000000000..edeb8d8c60 --- /dev/null +++ b/base_comment_template/i18n/fr_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 +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" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: 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 0000000000..6ac62878ec --- /dev/null +++ b/base_comment_template/i18n/fr_CH.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 +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" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: 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 0000000000..0ee29abdd8 --- /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" +"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" + +#. 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 0000000000..e333a12687 --- /dev/null +++ b/base_comment_template/i18n/gl_ES.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 +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" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..e2df9c1c40 --- /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" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..607e77dd06 --- /dev/null +++ b/base_comment_template/i18n/hr.po @@ -0,0 +1,100 @@ +# 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" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. 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 0000000000..e9e21a9109 --- /dev/null +++ b/base_comment_template/i18n/hr_HR.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 +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" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_comment_template +#: 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 0000000000..0ab21bf599 --- /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" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..04012f23c1 --- /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" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..c2cffa2cc7 --- /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" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..fb62298b45 --- /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" +"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" + +#. 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 0000000000..618b8cf635 --- /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" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..36cf94aa4f --- /dev/null +++ b/base_comment_template/i18n/lt.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 +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" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..737677ad00 --- /dev/null +++ b/base_comment_template/i18n/lt_LT.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 +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" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..7b0b92734e --- /dev/null +++ b/base_comment_template/i18n/lv.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 +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" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: base_comment_template +#: 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 0000000000..1876f88d6e --- /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" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_comment_template +#: 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 0000000000..b7ae483130 --- /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" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..d73d3b5243 --- /dev/null +++ b/base_comment_template/i18n/nb.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 +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" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..b332275ef4 --- /dev/null +++ b/base_comment_template/i18n/nb_NO.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 +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" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..b21bd81621 --- /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" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..9882e4ff64 --- /dev/null +++ b/base_comment_template/i18n/nl_BE.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 +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" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..2e514f440a --- /dev/null +++ b/base_comment_template/i18n/nl_NL.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 +# 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" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..d69916a7c9 --- /dev/null +++ b/base_comment_template/i18n/pl.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 +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" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: base_comment_template +#: 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 0000000000..961735123c --- /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" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. 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 0000000000..8c7376403c --- /dev/null +++ b/base_comment_template/i18n/pt_BR.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 +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" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. 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 0000000000..5e7b739989 --- /dev/null +++ b/base_comment_template/i18n/pt_PT.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 +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" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..443f6b5153 --- /dev/null +++ b/base_comment_template/i18n/ro.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 +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" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: base_comment_template +#: 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 0000000000..9aece38036 --- /dev/null +++ b/base_comment_template/i18n/ru.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 +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" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: base_comment_template +#: 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 0000000000..edfd37d215 --- /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" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_comment_template +#: 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 0000000000..0443aaade1 --- /dev/null +++ b/base_comment_template/i18n/sl.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 +# 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" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: base_comment_template +#: 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 0000000000..c16f6d3e62 --- /dev/null +++ b/base_comment_template/i18n/sr.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 +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" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..e3542bce4c --- /dev/null +++ b/base_comment_template/i18n/sr@latin.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 +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" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..7ed62b8a8a --- /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" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: 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 0000000000..eb35fdc65f --- /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" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..7fd3f446c0 --- /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" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: 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 0000000000..a09835a943 --- /dev/null +++ b/base_comment_template/i18n/tr_TR.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 +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" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..e85d4b991c --- /dev/null +++ b/base_comment_template/i18n/uk.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 +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" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_comment_template +#: 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 0000000000..da54ca39f7 --- /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" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..87a0d8dbb9 --- /dev/null +++ b/base_comment_template/i18n/vi_VN.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 +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" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..843ebffb00 --- /dev/null +++ b/base_comment_template/i18n/zh_CN.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 +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" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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 0000000000..dc84aeca2c --- /dev/null +++ b/base_comment_template/i18n/zh_TW.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 +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" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_comment_template +#: 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/models/__init__.py b/base_comment_template/models/__init__.py index 5cfb033211..fffa7ebd10 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 3b4ae98654..2b8e9426d5 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 0000000000..f7f8aafd56 --- /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 0000000000..289173b4be --- /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 0000000000..e475da0932 --- /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 3d1284edbbb87d8fab600e93da94e55b0bd960ff Mon Sep 17 00:00:00 2001 From: Raf Ven Date: Wed, 26 Dec 2018 20:56:21 +0100 Subject: [PATCH 05/86] [MIG] base_comment_template: Migration to 12.0 --- base_comment_template/README.rst | 14 ++-- base_comment_template/__manifest__.py | 29 ++++---- 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 +++++++++---------- 7 files changed, 88 insertions(+), 67 deletions(-) diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index c08327b8b5..fbe08e30a3 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 8ea1ace960..eaa2d8a9d3 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/models/__init__.py b/base_comment_template/models/__init__.py index fffa7ebd10..4ad9af3c05 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 2b8e9426d5..0cd33e2606 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 f7f8aafd56..ba762f7ec8 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 e475da0932..134864b4e5 100644 --- a/base_comment_template/static/description/index.html +++ b/base_comment_template/static/description/index.html @@ -367,7 +367,7 @@

Base Comments Templates

!! 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 @@

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.

@@ -415,8 +415,12 @@

Contributors

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

    Maintainers

    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 febb9abb5e..c0cf9174fe 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 9237c6b4a90e019b38ef75ac3ed400e048a463ab 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 06/86] 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/ [ADD] icon.png --- 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 0ee29abdd8..c7f3a18efc 100644 --- a/base_comment_template/i18n/gl.po +++ b/base_comment_template/i18n/gl.po @@ -9,34 +9,35 @@ 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 @@ -44,12 +45,12 @@ msgstr "" #: 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 "" +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 @@ -64,7 +65,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 @@ -89,9 +90,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 3e86ce2ce23db2d7b78f47df41ac30c921f95a7c Mon Sep 17 00:00:00 2001 From: Yoshi Tashiro Date: Fri, 5 Jul 2019 02:20:19 +0000 Subject: [PATCH 07/86] 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 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po index fb62298b45..ff322c28fb 100644 --- a/base_comment_template/i18n/ja.po +++ b/base_comment_template/i18n/ja.po @@ -9,34 +9,35 @@ 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 @@ -44,12 +45,12 @@ msgstr "" #: 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 "" +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 @@ -89,9 +90,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 "ドキュメント上の位置" From 7ae4414b28d17c4770c34bb0e73b719a2adb146a Mon Sep 17 00:00:00 2001 From: Pedro Castro Silva Date: Sat, 17 Aug 2019 22:52:04 +0000 Subject: [PATCH 08/86] Translated using Weblate (Portuguese) 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/pt/ --- base_comment_template/i18n/pt.po | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po index 961735123c..9a5e8fa2c8 100644 --- a/base_comment_template/i18n/pt.po +++ b/base_comment_template/i18n/pt.po @@ -9,34 +9,35 @@ 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-08-18 01:44+0000\n" +"Last-Translator: Pedro Castro Silva \n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 3.7.1\n" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" -msgstr "" +msgstr "Após as linhas" #. module: base_comment_template #: model:ir.model,name:base_comment_template.model_base_comment_template msgid "Base comment template" -msgstr "" +msgstr "Modelo de Comentários Base" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "Before lines" -msgstr "" +msgstr "Antes das Linhas" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text msgid "Comment" -msgstr "" +msgstr "Comentário" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template @@ -44,12 +45,12 @@ msgstr "" #: 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 "" +msgstr "Modelos de Comentários" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name msgid "Comment summary" -msgstr "" +msgstr "Resumo de comentário" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid @@ -89,9 +90,9 @@ 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 "" +msgstr "Posição" #. module: base_comment_template #: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position msgid "Position on document" -msgstr "" +msgstr "Posição no documento" From 017ee1495235f81bf70537ed4320a19af6a7b8a7 Mon Sep 17 00:00:00 2001 From: Rodrigo Macedo Date: Tue, 17 Sep 2019 14:49:14 +0000 Subject: [PATCH 09/86] Translated using Weblate (Portuguese (Brazil)) 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/pt_BR/ --- base_comment_template/i18n/pt_BR.po | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po index 8c7376403c..675ee79c2d 100644 --- a/base_comment_template/i18n/pt_BR.po +++ b/base_comment_template/i18n/pt_BR.po @@ -9,35 +9,36 @@ 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" +"PO-Revision-Date: 2019-09-17 17:24+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.8\n" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" -msgstr "" +msgstr "Depois das linhas" #. module: base_comment_template #: model:ir.model,name:base_comment_template.model_base_comment_template msgid "Base comment template" -msgstr "" +msgstr "Modelo de comentário Base" #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "Before lines" -msgstr "" +msgstr "Antes das linhas" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text msgid "Comment" -msgstr "" +msgstr "Comentário" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template @@ -45,12 +46,12 @@ msgstr "" #: 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 "" +msgstr "Modelos de comentários" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_name msgid "Comment summary" -msgstr "" +msgstr "Índice de comentários" #. module: base_comment_template #: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_uid @@ -90,9 +91,9 @@ 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 "" +msgstr "Posição" #. module: base_comment_template #: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position msgid "Position on document" -msgstr "" +msgstr "Posição no documento" From 7346e78c732ac07cf1c1ec52d6aa3fce1b3989e0 Mon Sep 17 00:00:00 2001 From: Ivan Todorovich Date: Fri, 19 Apr 2019 13:47:37 +0000 Subject: [PATCH 10/86] [IMP] base_comment_template multi company rules [IMP] Move comment_template_id from account_invoice_comment_template and make it company_dependant [IMP] base_comment_template: Add test --- base_comment_template/README.rst | 5 +++ base_comment_template/__manifest__.py | 4 ++- base_comment_template/models/__init__.py | 2 +- base_comment_template/models/comment.py | 20 +++++++++--- base_comment_template/models/res_partner.py | 19 +++++++++++ base_comment_template/readme/CONTRIBUTORS.rst | 5 +++ base_comment_template/security/security.xml | 11 +++++++ base_comment_template/tests/__init__.py | 2 ++ .../tests/test_base_comment_template.py | 21 ++++++++++++ base_comment_template/views/comment_view.xml | 32 ++++++++++++++++--- base_comment_template/views/res_partner.xml | 14 ++++++++ 11 files changed, 124 insertions(+), 11 deletions(-) create mode 100644 base_comment_template/models/res_partner.py create mode 100644 base_comment_template/security/security.xml create mode 100644 base_comment_template/tests/__init__.py create mode 100644 base_comment_template/tests/test_base_comment_template.py create mode 100644 base_comment_template/views/res_partner.xml diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst index fbe08e30a3..5ee2ff5375 100644 --- a/base_comment_template/README.rst +++ b/base_comment_template/README.rst @@ -75,6 +75,11 @@ Contributors * Raf Ven +* `Druidoo `_: + + * Iván Todorovich + + Maintainers ~~~~~~~~~~~ diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py index eaa2d8a9d3..11c926f850 100644 --- a/base_comment_template/__manifest__.py +++ b/base_comment_template/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Base Comments Templates", "summary": "Comments templates on documents", - "version": "12.0.1.0.0", + "version": "12.0.2.0.0", "category": "Sale", "website": "https://github.com/OCA/account-invoice-reporting", "author": "Camptocamp, Odoo Community Association (OCA)", @@ -15,6 +15,8 @@ ], "data": [ "security/ir.model.access.csv", + "security/security.xml", "views/comment_view.xml", + "views/res_partner.xml", ], } diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py index 4ad9af3c05..b62fbec115 100644 --- a/base_comment_template/models/__init__.py +++ b/base_comment_template/models/__init__.py @@ -1,3 +1,3 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - from . import comment +from . import res_partner diff --git a/base_comment_template/models/comment.py b/base_comment_template/models/comment.py index 0cd33e2606..6dec9062fa 100644 --- a/base_comment_template/models/comment.py +++ b/base_comment_template/models/comment.py @@ -9,23 +9,35 @@ class BaseCommentTemplate(models.Model): _name = "base.comment.template" _description = "Base comment template" + active = fields.Boolean(default=True) + name = fields.Char( string='Comment summary', - required=True + required=True, ) + position = fields.Selection( selection=[ ('before_lines', 'Before lines'), - ('after_lines', 'After lines') + ('after_lines', 'After lines'), ], required=True, default='before_lines', - help="Position on document" + help="Position on document", ) + text = fields.Html( string='Comment', translate=True, - required=True + required=True, + ) + + company_id = fields.Many2one( + 'res.company', + string='Company', + help="If set, it'll only be available for this company", + ondelete='cascade', + index=True, ) @api.multi diff --git a/base_comment_template/models/res_partner.py b/base_comment_template/models/res_partner.py new file mode 100644 index 0000000000..b717121081 --- /dev/null +++ b/base_comment_template/models/res_partner.py @@ -0,0 +1,19 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class ResPartner(models.Model): + _inherit = "res.partner" + + property_comment_template_id = fields.Many2one( + comodel_name='base.comment.template', + string='Conditions template', + company_dependant=True, + ) + + @api.model + def _commercial_fields(self): + res = super(ResPartner, self)._commercial_fields() + res += ['property_comment_template_id'] + return res diff --git a/base_comment_template/readme/CONTRIBUTORS.rst b/base_comment_template/readme/CONTRIBUTORS.rst index ba762f7ec8..e81ad4425a 100755 --- a/base_comment_template/readme/CONTRIBUTORS.rst +++ b/base_comment_template/readme/CONTRIBUTORS.rst @@ -7,3 +7,8 @@ * `DynApps `_: * Raf Ven + +* `Druidoo `_: + + * Iván Todorovich + diff --git a/base_comment_template/security/security.xml b/base_comment_template/security/security.xml new file mode 100644 index 0000000000..3fab3262db --- /dev/null +++ b/base_comment_template/security/security.xml @@ -0,0 +1,11 @@ + + + + + Base comment multi-company + + + ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + + + diff --git a/base_comment_template/tests/__init__.py b/base_comment_template/tests/__init__.py new file mode 100644 index 0000000000..e198115e4e --- /dev/null +++ b/base_comment_template/tests/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from . import test_base_comment_template diff --git a/base_comment_template/tests/test_base_comment_template.py b/base_comment_template/tests/test_base_comment_template.py new file mode 100644 index 0000000000..d8bba34a98 --- /dev/null +++ b/base_comment_template/tests/test_base_comment_template.py @@ -0,0 +1,21 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from odoo.tests.common import TransactionCase + + +class TestResPartner(TransactionCase): + + def setUp(self): + self.template_id = self.env['base.comment.template'].create({ + 'name': 'Comment before lines', + 'position': 'before_lines', + 'text': 'Text before lines', + }) + + def test_commercial_partner_fields(self): + # Azure Interior + partner_id = self.env.ref('base.res_partner_12') + partner_id.property_comment_template_id = self.template_id.id + # Test childs propagation of commercial partner field + for child_id in partner_id.child_ids: + self.assertEqual( + child_id.property_comment_template_id == self.template_id) diff --git a/base_comment_template/views/comment_view.xml b/base_comment_template/views/comment_view.xml index c0cf9174fe..d33c437792 100644 --- a/base_comment_template/views/comment_view.xml +++ b/base_comment_template/views/comment_view.xml @@ -8,6 +8,7 @@ + @@ -17,11 +18,31 @@ base.comment.template
    - - - - - + +
    + +
    +
    +

    + +

    +
    + + + + + + + + + + + + + +
    @@ -34,6 +55,7 @@ + diff --git a/base_comment_template/views/res_partner.xml b/base_comment_template/views/res_partner.xml new file mode 100644 index 0000000000..d12cc53ad4 --- /dev/null +++ b/base_comment_template/views/res_partner.xml @@ -0,0 +1,14 @@ + + + + res.partner + + + + + + + + + + From 350c33b78e5a790da87de654538a58217b3b83b8 Mon Sep 17 00:00:00 2001 From: Ivan Todorovich Date: Fri, 19 Apr 2019 14:16:04 +0000 Subject: [PATCH 11/86] [IMP] account_invoice_comment_template: Move comment_template_id field to the Invoicing tab [IMP] account_invoice_comment_template: rename partner field name from comment_template_id to invoice_comment_template_id [IMP] account_invoice_comment_template: Make partner field company_dependant and move domain definition of invoice fields from the view to the model [MOV] account_invoice_comment_template: comment_template_id to base_comment_template [IMP] account_invoice_comment_template: Translate templates when partner changes --- base_comment_template/tests/test_base_comment_template.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base_comment_template/tests/test_base_comment_template.py b/base_comment_template/tests/test_base_comment_template.py index d8bba34a98..c963c5894b 100644 --- a/base_comment_template/tests/test_base_comment_template.py +++ b/base_comment_template/tests/test_base_comment_template.py @@ -5,6 +5,7 @@ class TestResPartner(TransactionCase): def setUp(self): + super(TestResPartner, self).setUp() self.template_id = self.env['base.comment.template'].create({ 'name': 'Comment before lines', 'position': 'before_lines', @@ -18,4 +19,4 @@ def test_commercial_partner_fields(self): # Test childs propagation of commercial partner field for child_id in partner_id.child_ids: self.assertEqual( - child_id.property_comment_template_id == self.template_id) + child_id.property_comment_template_id, self.template_id) From 2d03181b9c6675bd91ff38583c2c2c2391753076 Mon Sep 17 00:00:00 2001 From: Ivan Todorovich Date: Tue, 23 Apr 2019 14:38:28 +0000 Subject: [PATCH 12/86] [MOV] migration script to base_comment_template [UPD] README.rst Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. 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/ --- base_comment_template/i18n/am.po | 59 +++++++++++++---- base_comment_template/i18n/ar.po | 59 +++++++++++++---- .../i18n/base_comment_template.pot | 61 ++++++++++++----- base_comment_template/i18n/bg.po | 59 +++++++++++++---- base_comment_template/i18n/bs.po | 59 +++++++++++++---- base_comment_template/i18n/ca.po | 59 +++++++++++++---- base_comment_template/i18n/cs.po | 59 +++++++++++++---- base_comment_template/i18n/da.po | 59 +++++++++++++---- base_comment_template/i18n/de.po | 61 +++++++++++++---- base_comment_template/i18n/el_GR.po | 59 +++++++++++++---- base_comment_template/i18n/en_GB.po | 59 +++++++++++++---- base_comment_template/i18n/es.po | 61 +++++++++++++---- base_comment_template/i18n/es_AR.po | 59 +++++++++++++---- base_comment_template/i18n/es_CL.po | 59 +++++++++++++---- base_comment_template/i18n/es_CO.po | 59 +++++++++++++---- base_comment_template/i18n/es_CR.po | 59 +++++++++++++---- base_comment_template/i18n/es_DO.po | 59 +++++++++++++---- base_comment_template/i18n/es_EC.po | 59 +++++++++++++---- base_comment_template/i18n/es_ES.po | 59 +++++++++++++---- base_comment_template/i18n/es_MX.po | 59 +++++++++++++---- base_comment_template/i18n/es_PE.po | 59 +++++++++++++---- base_comment_template/i18n/es_PY.po | 59 +++++++++++++---- base_comment_template/i18n/es_VE.po | 59 +++++++++++++---- base_comment_template/i18n/et.po | 59 +++++++++++++---- base_comment_template/i18n/eu.po | 59 +++++++++++++---- base_comment_template/i18n/fa.po | 59 +++++++++++++---- base_comment_template/i18n/fi.po | 59 +++++++++++++---- base_comment_template/i18n/fr.po | 61 +++++++++++++---- base_comment_template/i18n/fr_CA.po | 59 +++++++++++++---- base_comment_template/i18n/fr_CH.po | 59 +++++++++++++---- base_comment_template/i18n/gl.po | 61 +++++++++++++---- base_comment_template/i18n/gl_ES.po | 59 +++++++++++++---- base_comment_template/i18n/he.po | 59 +++++++++++++---- base_comment_template/i18n/hr.po | 59 +++++++++++++---- base_comment_template/i18n/hr_HR.po | 59 +++++++++++++---- base_comment_template/i18n/hu.po | 59 +++++++++++++---- base_comment_template/i18n/id.po | 59 +++++++++++++---- base_comment_template/i18n/it.po | 59 +++++++++++++---- base_comment_template/i18n/ja.po | 61 +++++++++++++---- base_comment_template/i18n/ko.po | 59 +++++++++++++---- base_comment_template/i18n/lt.po | 59 +++++++++++++---- base_comment_template/i18n/lt_LT.po | 59 +++++++++++++---- base_comment_template/i18n/lv.po | 59 +++++++++++++---- base_comment_template/i18n/mk.po | 59 +++++++++++++---- base_comment_template/i18n/mn.po | 59 +++++++++++++---- base_comment_template/i18n/nb.po | 59 +++++++++++++---- base_comment_template/i18n/nb_NO.po | 59 +++++++++++++---- base_comment_template/i18n/nl.po | 59 +++++++++++++---- base_comment_template/i18n/nl_BE.po | 59 +++++++++++++---- base_comment_template/i18n/nl_NL.po | 59 +++++++++++++---- base_comment_template/i18n/pl.po | 59 +++++++++++++---- base_comment_template/i18n/pt.po | 61 +++++++++++++---- base_comment_template/i18n/pt_BR.po | 65 ++++++++++++++----- base_comment_template/i18n/pt_PT.po | 59 +++++++++++++---- base_comment_template/i18n/ro.po | 59 +++++++++++++---- base_comment_template/i18n/ru.po | 59 +++++++++++++---- base_comment_template/i18n/sk.po | 59 +++++++++++++---- base_comment_template/i18n/sl.po | 61 +++++++++++++---- base_comment_template/i18n/sr.po | 59 +++++++++++++---- base_comment_template/i18n/sr@latin.po | 59 +++++++++++++---- base_comment_template/i18n/sv.po | 59 +++++++++++++---- base_comment_template/i18n/th.po | 59 +++++++++++++---- base_comment_template/i18n/tr.po | 59 +++++++++++++---- base_comment_template/i18n/tr_TR.po | 59 +++++++++++++---- base_comment_template/i18n/uk.po | 59 +++++++++++++---- base_comment_template/i18n/vi.po | 59 +++++++++++++---- base_comment_template/i18n/vi_VN.po | 59 +++++++++++++---- base_comment_template/i18n/zh_CN.po | 59 +++++++++++++---- base_comment_template/i18n/zh_TW.po | 59 +++++++++++++---- .../migrations/12.0.2.0.0/post-migrate.py | 57 ++++++++++++++++ .../static/description/index.html | 6 +- 71 files changed, 3186 insertions(+), 970 deletions(-) create mode 100644 base_comment_template/migrations/12.0.2.0.0/post-migrate.py diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po index 90fd00d633..c9ae5e8030 100644 --- a/base_comment_template/i18n/am.po +++ b/base_comment_template/i18n/am.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 d26f235817..5f67c2677a 100644 --- a/base_comment_template/i18n/ar.po +++ b/base_comment_template/i18n/ar.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "آخر تعديل في" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 ed9cb33fb4..5838683776 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" @@ -13,6 +13,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -29,65 +34,91 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 f01fe8ba3d..a7f70d4107 100644 --- a/base_comment_template/i18n/bg.po +++ b/base_comment_template/i18n/bg.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Създадено от" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Последно обновено на" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 0e9c5a056f..2fb71776b4 100644 --- a/base_comment_template/i18n/bs.po +++ b/base_comment_template/i18n/bs.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Kreirao" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zadnje mijenjano" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 65e87595d7..c4d38fee32 100644 --- a/base_comment_template/i18n/ca.po +++ b/base_comment_template/i18n/ca.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Comentari " #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creat per" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Darrera modificació el" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 c69e432069..337bac31ca 100644 --- a/base_comment_template/i18n/cs.po +++ b/base_comment_template/i18n/cs.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Vytvořil(a)" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Naposled upraveno" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 685ab71181..7cb646efab 100644 --- a/base_comment_template/i18n/da.po +++ b/base_comment_template/i18n/da.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Oprettet af" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Sidst ændret den" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 3949058434..1801e90e45 100644 --- a/base_comment_template/i18n/de.po +++ b/base_comment_template/i18n/de.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,92 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Bemerkung" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Vorlagen zu Bemerkungen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Erstellt von" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zuletzt geändert am" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Stelle" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 d8267018ae..591bf540fc 100644 --- a/base_comment_template/i18n/el_GR.po +++ b/base_comment_template/i18n/el_GR.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 9bf3c3da5e..ea1a96f7fc 100644 --- a/base_comment_template/i18n/en_GB.po +++ b/base_comment_template/i18n/en_GB.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Created by" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Last Modified on" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 45c16254b9..c90baa55c7 100644 --- a/base_comment_template/i18n/es.po +++ b/base_comment_template/i18n/es.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,92 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Comentario" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación el" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Posició" #. 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 cc601b5914..2d690c28c3 100644 --- a/base_comment_template/i18n/es_AR.po +++ b/base_comment_template/i18n/es_AR.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e8d688393b..a250357a83 100644 --- a/base_comment_template/i18n/es_CL.po +++ b/base_comment_template/i18n/es_CL.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 adc1af3ab2..a5506ed6ca 100644 --- a/base_comment_template/i18n/es_CO.po +++ b/base_comment_template/i18n/es_CO.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última Modificación el" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 dffcfef7a7..12e2381193 100644 --- a/base_comment_template/i18n/es_CR.po +++ b/base_comment_template/i18n/es_CR.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 6b9e686b88..e0c5aff61a 100644 --- a/base_comment_template/i18n/es_DO.po +++ b/base_comment_template/i18n/es_DO.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e99d6a5951..4d6653e8df 100644 --- a/base_comment_template/i18n/es_EC.po +++ b/base_comment_template/i18n/es_EC.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 48cc6b2f31..67f4ef83d8 100644 --- a/base_comment_template/i18n/es_ES.po +++ b/base_comment_template/i18n/es_ES.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 9bbb1bea67..27d174f014 100644 --- a/base_comment_template/i18n/es_MX.po +++ b/base_comment_template/i18n/es_MX.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Ultima modificacion realizada" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 11c49dcc58..bf7d31e17c 100644 --- a/base_comment_template/i18n/es_PE.po +++ b/base_comment_template/i18n/es_PE.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Ultima Modificación en" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 b7be03b474..4f7e8b3d01 100644 --- a/base_comment_template/i18n/es_PY.po +++ b/base_comment_template/i18n/es_PY.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 59348c7149..d048469ee6 100644 --- a/base_comment_template/i18n/es_VE.po +++ b/base_comment_template/i18n/es_VE.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Modificada por última vez" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 58d03e32b6..67be74e258 100644 --- a/base_comment_template/i18n/et.po +++ b/base_comment_template/i18n/et.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Loonud" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Viimati muudetud" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 6069fec846..938b035ea1 100644 --- a/base_comment_template/i18n/eu.po +++ b/base_comment_template/i18n/eu.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Nork sortua" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 83db34af30..d848e15497 100644 --- a/base_comment_template/i18n/fa.po +++ b/base_comment_template/i18n/fa.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "تاریخ آخرین به‌روزرسانی" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 cc39d2fb22..b5ee455197 100644 --- a/base_comment_template/i18n/fi.po +++ b/base_comment_template/i18n/fi.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Luonut" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 c94b889457..c6f9ed4759 100644 --- a/base_comment_template/i18n/fr.po +++ b/base_comment_template/i18n/fr.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,92 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Commentaire" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Modèles de commentaires" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Créé par" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Dernière mise-à-jour le" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Position" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 edeb8d8c60..9d095be228 100644 --- a/base_comment_template/i18n/fr_CA.po +++ b/base_comment_template/i18n/fr_CA.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Créé par" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 6ac62878ec..95abe679d6 100644 --- a/base_comment_template/i18n/fr_CH.po +++ b/base_comment_template/i18n/fr_CH.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Créé par" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Dernière modification le" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 c7f3a18efc..b65c4d46b3 100644 --- a/base_comment_template/i18n/gl.po +++ b/base_comment_template/i18n/gl.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.4\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,92 @@ msgid "Before lines" msgstr "Antes das liñas" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Comentario" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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 "Modelos 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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Modelos de comentarios" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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 "Nome 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última modificación" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Posición" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "Posición no documento" diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po index e333a12687..84059da41c 100644 --- a/base_comment_template/i18n/gl_ES.po +++ b/base_comment_template/i18n/gl_ES.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e2df9c1c40..a7be7138e9 100644 --- a/base_comment_template/i18n/he.po +++ b/base_comment_template/i18n/he.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "תאריך שינוי אחרון" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 607e77dd06..573610b4a6 100644 --- a/base_comment_template/i18n/hr.po +++ b/base_comment_template/i18n/hr.po @@ -21,6 +21,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -37,64 +42,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Komentar" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zadnja izmjena" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e9e21a9109..48a6b06a0f 100644 --- a/base_comment_template/i18n/hr_HR.po +++ b/base_comment_template/i18n/hr_HR.po @@ -20,6 +20,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Kreirao" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zadnje modificirano" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 0ab21bf599..8b4495a2c3 100644 --- a/base_comment_template/i18n/hu.po +++ b/base_comment_template/i18n/hu.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Készítette" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Utolsó frissítés dátuma" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 04012f23c1..eab8bcc2eb 100644 --- a/base_comment_template/i18n/id.po +++ b/base_comment_template/i18n/id.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Dibuat oleh" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Terakhir Dimodifikasi pada" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 c2cffa2cc7..2b70facb18 100644 --- a/base_comment_template/i18n/it.po +++ b/base_comment_template/i18n/it.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Coomento" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creato da" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Ultima Modifica il" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Posizione" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 ff322c28fb..4a60d25d89 100644 --- a/base_comment_template/i18n/ja.po +++ b/base_comment_template/i18n/ja.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.7.1\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,92 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "コメント" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "コメントテンプレート" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "作成者" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "最終更新日" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "位置" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 618b8cf635..3a29fec900 100644 --- a/base_comment_template/i18n/ko.po +++ b/base_comment_template/i18n/ko.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "작성자" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "최근 수정" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 36cf94aa4f..9e9a416772 100644 --- a/base_comment_template/i18n/lt.po +++ b/base_comment_template/i18n/lt.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Sukūrė" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Paskutinį kartą keista" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 737677ad00..522b86677b 100644 --- a/base_comment_template/i18n/lt_LT.po +++ b/base_comment_template/i18n/lt_LT.po @@ -20,6 +20,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Sukūrė" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 7b0b92734e..fd52810394 100644 --- a/base_comment_template/i18n/lv.po +++ b/base_comment_template/i18n/lv.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Izveidoja" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 1876f88d6e..8bcae0017f 100644 --- a/base_comment_template/i18n/mk.po +++ b/base_comment_template/i18n/mk.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Креирано од" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Последна промена на" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 b7ae483130..d55db78d1b 100644 --- a/base_comment_template/i18n/mn.po +++ b/base_comment_template/i18n/mn.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 d73d3b5243..d7836ad2ce 100644 --- a/base_comment_template/i18n/nb.po +++ b/base_comment_template/i18n/nb.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Opprettet av" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Sist oppdatert " #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 b332275ef4..35102754ee 100644 --- a/base_comment_template/i18n/nb_NO.po +++ b/base_comment_template/i18n/nb_NO.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Laget av" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Sist endret den" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 b21bd81621..9501cb12a3 100644 --- a/base_comment_template/i18n/nl.po +++ b/base_comment_template/i18n/nl.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Opmerking" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Laatst bijgewerkt op" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 9882e4ff64..42a180e2fc 100644 --- a/base_comment_template/i18n/nl_BE.po +++ b/base_comment_template/i18n/nl_BE.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Gemaakt door" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Laatst Aangepast op" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 2e514f440a..9a940eebf9 100644 --- a/base_comment_template/i18n/nl_NL.po +++ b/base_comment_template/i18n/nl_NL.po @@ -20,6 +20,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Laatst gewijzigd op" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 d69916a7c9..4fa04407f3 100644 --- a/base_comment_template/i18n/pl.po +++ b/base_comment_template/i18n/pl.po @@ -20,6 +20,11 @@ msgstr "" "%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Utworzone przez" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Ostatnio modyfikowano" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 9a5e8fa2c8..a29bbb7d53 100644 --- a/base_comment_template/i18n/pt.po +++ b/base_comment_template/i18n/pt.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 3.7.1\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,92 @@ msgid "Before lines" msgstr "Antes das Linhas" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Comentário" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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 "Modelos de Comentários" #. 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 "Resumo de comentário" #. 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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Modelos de Comentários" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Criado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Posição" #. 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 "Posição no documento" diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po index 675ee79c2d..f958242fde 100644 --- a/base_comment_template/i18n/pt_BR.po +++ b/base_comment_template/i18n/pt_BR.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-05-16 11:59+0000\n" "PO-Revision-Date: 2019-09-17 17:24+0000\n" "Last-Translator: Rodrigo Macedo \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" @@ -20,6 +20,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.8\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,92 @@ msgid "Before lines" msgstr "Antes das linhas" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_text +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Comentário" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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 "Modelos de comentários" #. 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 comentários" #. 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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Modelos de comentários" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Criado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Posição" #. 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 "Posição no documento" diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po index 5e7b739989..7fd6fdfc22 100644 --- a/base_comment_template/i18n/pt_PT.po +++ b/base_comment_template/i18n/pt_PT.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Criado por" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Última Modificação Em" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 443f6b5153..fdd5570fdc 100644 --- a/base_comment_template/i18n/ro.po +++ b/base_comment_template/i18n/ro.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Creat de" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Ultima actualizare în" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 9aece38036..594851825d 100644 --- a/base_comment_template/i18n/ru.po +++ b/base_comment_template/i18n/ru.po @@ -20,6 +20,11 @@ msgstr "" "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" "%100>=11 && n%100<=14)? 2 : 3);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Создано" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 edfd37d215..3be9d9c2b4 100644 --- a/base_comment_template/i18n/sk.po +++ b/base_comment_template/i18n/sk.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Vytvoril" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Posledná modifikácia" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 0443aaade1..43f8c35bd0 100644 --- a/base_comment_template/i18n/sl.po +++ b/base_comment_template/i18n/sl.po @@ -20,6 +20,11 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,92 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "Komentar" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +#| msgid "Comment Templates" +msgid "Conditions template" +msgstr "Predloge komentarjev" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Ustvaril" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "Položaj" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 c16f6d3e62..cac470954f 100644 --- a/base_comment_template/i18n/sr.po +++ b/base_comment_template/i18n/sr.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e3542bce4c..45069aef3a 100644 --- a/base_comment_template/i18n/sr@latin.po +++ b/base_comment_template/i18n/sr@latin.po @@ -20,6 +20,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -36,64 +41,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Kreirao" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Zadnja izmjena" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 7ed62b8a8a..30d62a813c 100644 --- a/base_comment_template/i18n/sv.po +++ b/base_comment_template/i18n/sv.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Skapad av" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Senast redigerad" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 eb35fdc65f..a86767fd6c 100644 --- a/base_comment_template/i18n/th.po +++ b/base_comment_template/i18n/th.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "สร้างโดย" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 7fd3f446c0..1e39e273b1 100644 --- a/base_comment_template/i18n/tr.po +++ b/base_comment_template/i18n/tr.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Oluşturan" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Son değişiklik" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 a09835a943..42ea972fee 100644 --- a/base_comment_template/i18n/tr_TR.po +++ b/base_comment_template/i18n/tr_TR.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Oluşturan" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "En son güncelleme tarihi" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 e85d4b991c..7c1d28756e 100644 --- a/base_comment_template/i18n/uk.po +++ b/base_comment_template/i18n/uk.po @@ -19,6 +19,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Створив" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Остання модифікація" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 da54ca39f7..dbb071a64e 100644 --- a/base_comment_template/i18n/vi.po +++ b/base_comment_template/i18n/vi.po @@ -18,6 +18,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -34,64 +39,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Được tạo bởi" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "Sửa lần cuối vào" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 87a0d8dbb9..aed2e71da5 100644 --- a/base_comment_template/i18n/vi_VN.po +++ b/base_comment_template/i18n/vi_VN.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "Tạo bởi" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 843ebffb00..8e00d95261 100644 --- a/base_comment_template/i18n/zh_CN.po +++ b/base_comment_template/i18n/zh_CN.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "创建者" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "最后修改时间" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: 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 dc84aeca2c..65968057c2 100644 --- a/base_comment_template/i18n/zh_TW.po +++ b/base_comment_template/i18n/zh_TW.po @@ -19,6 +19,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + #. module: base_comment_template #: selection:base.comment.template,position:0 msgid "After lines" @@ -35,64 +40,90 @@ 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 +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form msgid "Comment" msgstr "" #. module: base_comment_template #: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template -#: model: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__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid msgid "Created by" msgstr "建立者" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_create_date +#: 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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update msgid "Last Modified on" msgstr "最後修改:" #. module: base_comment_template -#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template_write_uid +#: 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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position msgid "Position" msgstr "" #. module: base_comment_template -#: model:ir.model.fields,help:base_comment_template.field_base_comment_template_position +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position msgid "Position on document" msgstr "" diff --git a/base_comment_template/migrations/12.0.2.0.0/post-migrate.py b/base_comment_template/migrations/12.0.2.0.0/post-migrate.py new file mode 100644 index 0000000000..e08ccabb17 --- /dev/null +++ b/base_comment_template/migrations/12.0.2.0.0/post-migrate.py @@ -0,0 +1,57 @@ +from odoo import tools + +import logging +_logger = logging.getLogger(__name__) + + +def migrate(cr, version): + + _logger.debug('Migrating res.partner comment_template_id') + + if not tools.column_exists(cr, 'res_partner', 'comment_template_id'): + return + + cr.execute("SELECT id FROM res_company") + company_ids = [d[0] for d in cr.fetchall()] + + cr.execute( + "SELECT id FROM ir_model_fields WHERE model=%s AND name=%s", + ('res.partner', 'property_comment_template_id')) + [field_id] = cr.fetchone() + + for company_id in company_ids: + cr.execute(""" + INSERT INTO ir_property( + name, + type, + fields_id, + company_id, + res_id, + value_reference + ) + SELECT + {field}, + 'many2one', + {field_id}, + {company_id}, + CONCAT('{model},',id), + CONCAT('{target_model},',{oldfield}) + FROM {table} t + WHERE {oldfield} IS NOT NULL + AND (company_id IS NULL OR company_id = {company_id}) + AND NOT EXISTS( + SELECT 1 + FROM ir_property + WHERE fields_id={field_id} + AND company_id={company_id} + AND res_id=CONCAT('{model},',t.id) + ) + """.format( + oldfield='comment_template_id', + field='property_comment_template_id', + field_id=field_id, + company_id=company_id, + model='res.partner', + target_model='base.comment.template', + table='res_partner', + )) diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html index 134864b4e5..bd15236809 100644 --- a/base_comment_template/static/description/index.html +++ b/base_comment_template/static/description/index.html @@ -3,7 +3,7 @@ - + Base Comments Templates