From 02354ab095bdf3ab154f9a1d0da0bc64fdf2e0ab Mon Sep 17 00:00:00 2001 From: Franco Tampieri Date: Fri, 12 Sep 2014 21:36:35 +0200 Subject: [PATCH 01/22] [New] Added New l10n_it_base refactored and new l10n_it_pec [Fix] Fix Pep 8 checks [Add] Add translation and fix some data [Fix] Fix Syntax and licence [Fix] Fix CamelCase on PEC module --- l10n_it_pec/AUTHORS.txt | 1 + l10n_it_pec/CHANGES.md | 4 +++ l10n_it_pec/__init__.py | 25 +++++++++++++ l10n_it_pec/__openerp__.py | 45 ++++++++++++++++++++++++ l10n_it_pec/i18n/it.po | 28 +++++++++++++++ l10n_it_pec/partner.py | 31 ++++++++++++++++ l10n_it_pec/static/description/icon.png | Bin 0 -> 568 bytes l10n_it_pec/view/partner_view.xml | 18 ++++++++++ 8 files changed, 152 insertions(+) create mode 100644 l10n_it_pec/AUTHORS.txt create mode 100644 l10n_it_pec/CHANGES.md create mode 100644 l10n_it_pec/__init__.py create mode 100644 l10n_it_pec/__openerp__.py create mode 100644 l10n_it_pec/i18n/it.po create mode 100644 l10n_it_pec/partner.py create mode 100644 l10n_it_pec/static/description/icon.png create mode 100644 l10n_it_pec/view/partner_view.xml diff --git a/l10n_it_pec/AUTHORS.txt b/l10n_it_pec/AUTHORS.txt new file mode 100644 index 000000000000..b8b6a7f97498 --- /dev/null +++ b/l10n_it_pec/AUTHORS.txt @@ -0,0 +1 @@ +Franco Tampieri \ No newline at end of file diff --git a/l10n_it_pec/CHANGES.md b/l10n_it_pec/CHANGES.md new file mode 100644 index 000000000000..688bed6e2bae --- /dev/null +++ b/l10n_it_pec/CHANGES.md @@ -0,0 +1,4 @@ +1.0 (Unreleased) +================ + +- first Release diff --git a/l10n_it_pec/__init__.py b/l10n_it_pec/__init__.py new file mode 100644 index 000000000000..af74c024cbd4 --- /dev/null +++ b/l10n_it_pec/__init__.py @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2010 OpenERP Italian Community +# (). +# +# All Rights Reserved +# $Id$ +# +# 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 . import partner diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py new file mode 100644 index 000000000000..f58cba05ce8f --- /dev/null +++ b/l10n_it_pec/__openerp__.py @@ -0,0 +1,45 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2010-2011 OpenERP Italian Community +# http://www.openerp-italia.org> +# All Rights Reserved +# +# 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': 'Pec Mail', + 'version': '0.1', + 'category': 'Localisation/Italy', + 'description': """Italian Localisation module - Pec Mail + +Funcionalities: + +- Add Pec Mail Field in Partner Profile + +""", + 'author': 'OpenERP Italian Community', + 'website': 'http://www.openerp-italia.org', + 'license': 'AGPL-3', + "depends": ['base'], + "data": [ + 'view/partner_view.xml', + ], + "qweb": [], + "demo": [], + "test": [], + "active": False, + 'installable': True +} diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po new file mode 100644 index 000000000000..808dfe7fbb44 --- /dev/null +++ b/l10n_it_pec/i18n/it.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0rc1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-09-12 20:46+0000\n" +"PO-Revision-Date: 2014-09-12 22:54+0100\n" +"Last-Translator: Franco Tampieri \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"Language: it\n" +"X-Generator: Poedit 1.6.9\n" + +#. module: l10n_it_pec +#: field:res.partner,pec_mail:0 +msgid "PEC Mail" +msgstr "Mail PEC" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/partner.py b/l10n_it_pec/partner.py new file mode 100644 index 000000000000..3bbe44359033 --- /dev/null +++ b/l10n_it_pec/partner.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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.osv import fields, orm + + +class ResPartner(orm.Model): + _inherit = "res.partner" + _columns = { + 'pec_mail': fields.char( + 'PEC Mail' + ), + } diff --git a/l10n_it_pec/static/description/icon.png b/l10n_it_pec/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2aa4dd28bdc15e2c3880239df1f30981e2209fd5 GIT binary patch literal 568 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSY)RhkEWmt-=;!C8<`)MX5lF!N|bSNY}tb*T5*m(8S8v*viOM z+rY@mz+n9}j#?BAx%nxXX_aUi3@oe+jUXDnJQRrnYLEok5S*V@Ql40p%1~Zju9umY dU7Va)kgAtols@~NjTBH3gQu&X%Q~loCIB$awv7M) literal 0 HcmV?d00001 diff --git a/l10n_it_pec/view/partner_view.xml b/l10n_it_pec/view/partner_view.xml new file mode 100644 index 000000000000..25bf8ce13df3 --- /dev/null +++ b/l10n_it_pec/view/partner_view.xml @@ -0,0 +1,18 @@ + + + + + + res.partner.pec.form + res.partner + 2 + + + + + + + + + + From 9a894d94abe07329def0323b5822875f8ca8a599 Mon Sep 17 00:00:00 2001 From: Lorenzo Battistini Date: Mon, 15 Sep 2014 16:52:17 +0200 Subject: [PATCH 02/22] [IMP] some copyrights --- l10n_it_pec/__openerp__.py | 5 ++--- l10n_it_pec/partner.py | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py index f58cba05ce8f..e7ed2db61abc 100644 --- a/l10n_it_pec/__openerp__.py +++ b/l10n_it_pec/__openerp__.py @@ -1,9 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (C) 2010-2011 OpenERP Italian Community -# http://www.openerp-italia.org> -# All Rights Reserved +# Copyright (C) 2014 Associazione Odoo Italia +# (). # # 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 diff --git a/l10n_it_pec/partner.py b/l10n_it_pec/partner.py index 3bbe44359033..293c9ca974bd 100644 --- a/l10n_it_pec/partner.py +++ b/l10n_it_pec/partner.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). +# Copyright (C) 2014 Associazione Odoo Italia +# (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as From 2e8d36f3a29d91a0aff79c723876a5bb4e0d4d95 Mon Sep 17 00:00:00 2001 From: Franco Tampieri Date: Mon, 15 Sep 2014 17:09:33 +0200 Subject: [PATCH 03/22] [Fix] Removend priority field in xml view of pec module [Fix] Reorganize folder structure for the model and update some translation --- l10n_it_pec/__init__.py | 2 +- l10n_it_pec/model/__init__.py | 25 +++++++++++++++++++++++++ l10n_it_pec/{ => model}/partner.py | 0 l10n_it_pec/view/partner_view.xml | 1 - 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 l10n_it_pec/model/__init__.py rename l10n_it_pec/{ => model}/partner.py (100%) diff --git a/l10n_it_pec/__init__.py b/l10n_it_pec/__init__.py index af74c024cbd4..d9c7039b7fa1 100644 --- a/l10n_it_pec/__init__.py +++ b/l10n_it_pec/__init__.py @@ -22,4 +22,4 @@ # ############################################################################## -from . import partner +from . import model diff --git a/l10n_it_pec/model/__init__.py b/l10n_it_pec/model/__init__.py new file mode 100644 index 000000000000..af74c024cbd4 --- /dev/null +++ b/l10n_it_pec/model/__init__.py @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2010 OpenERP Italian Community +# (). +# +# All Rights Reserved +# $Id$ +# +# 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 . import partner diff --git a/l10n_it_pec/partner.py b/l10n_it_pec/model/partner.py similarity index 100% rename from l10n_it_pec/partner.py rename to l10n_it_pec/model/partner.py diff --git a/l10n_it_pec/view/partner_view.xml b/l10n_it_pec/view/partner_view.xml index 25bf8ce13df3..0e78614e0826 100644 --- a/l10n_it_pec/view/partner_view.xml +++ b/l10n_it_pec/view/partner_view.xml @@ -5,7 +5,6 @@ res.partner.pec.form res.partner - 2 From 7467947c11171b0543b3050b6cbb8ae168ca77c5 Mon Sep 17 00:00:00 2001 From: Lorenzo Battistini Date: Tue, 16 Sep 2014 16:52:24 +0200 Subject: [PATCH 04/22] [FIX] useless file and copyright --- l10n_it_pec/CHANGES.md | 4 ---- l10n_it_pec/__init__.py | 5 +---- l10n_it_pec/model/__init__.py | 5 +---- 3 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 l10n_it_pec/CHANGES.md diff --git a/l10n_it_pec/CHANGES.md b/l10n_it_pec/CHANGES.md deleted file mode 100644 index 688bed6e2bae..000000000000 --- a/l10n_it_pec/CHANGES.md +++ /dev/null @@ -1,4 +0,0 @@ -1.0 (Unreleased) -================ - -- first Release diff --git a/l10n_it_pec/__init__.py b/l10n_it_pec/__init__.py index d9c7039b7fa1..78ec3855ca27 100644 --- a/l10n_it_pec/__init__.py +++ b/l10n_it_pec/__init__.py @@ -1,12 +1,9 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (C) 2010 OpenERP Italian Community +# Copyright (C) 2014 Associazione Odoo Italia # (). # -# All Rights Reserved -# $Id$ -# # 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 diff --git a/l10n_it_pec/model/__init__.py b/l10n_it_pec/model/__init__.py index af74c024cbd4..8149ce87f12b 100644 --- a/l10n_it_pec/model/__init__.py +++ b/l10n_it_pec/model/__init__.py @@ -1,12 +1,9 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (C) 2010 OpenERP Italian Community +# Copyright (C) 2014 Associazione Odoo Italia # (). # -# All Rights Reserved -# $Id$ -# # 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 From 4b7138f708562821402eabd8a3e15aecdb558dc3 Mon Sep 17 00:00:00 2001 From: Leonardo Donelli Date: Fri, 12 Dec 2014 12:34:05 +0100 Subject: [PATCH 05/22] Consistent quotes in __openerp__.py. Use new API. --- l10n_it_pec/__openerp__.py | 12 ++++++------ l10n_it_pec/model/partner.py | 11 ++++------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py index e7ed2db61abc..b0992531f0a1 100644 --- a/l10n_it_pec/__openerp__.py +++ b/l10n_it_pec/__openerp__.py @@ -32,13 +32,13 @@ 'author': 'OpenERP Italian Community', 'website': 'http://www.openerp-italia.org', 'license': 'AGPL-3', - "depends": ['base'], - "data": [ + 'depends': ['base'], + 'data': [ 'view/partner_view.xml', ], - "qweb": [], - "demo": [], - "test": [], - "active": False, + 'qweb': [], + 'demo': [], + 'test': [], + 'active': False, 'installable': True } diff --git a/l10n_it_pec/model/partner.py b/l10n_it_pec/model/partner.py index 293c9ca974bd..954fed90c81e 100644 --- a/l10n_it_pec/model/partner.py +++ b/l10n_it_pec/model/partner.py @@ -19,13 +19,10 @@ # ############################################################################## -from openerp.osv import fields, orm +from openerp import models, fields -class ResPartner(orm.Model): +class ResPartner(models.Model): _inherit = "res.partner" - _columns = { - 'pec_mail': fields.char( - 'PEC Mail' - ), - } + + pec_mail = fields.Char(string='PEC Mail') From 08081fe449011b75c59f2237de7fdea0ea0f5ea9 Mon Sep 17 00:00:00 2001 From: archetipo Date: Wed, 17 Dec 2014 14:30:46 +0100 Subject: [PATCH 06/22] [IMP] mail_pec field in list and kanban view [FIX] xml indentation [RM] useless files [FIX] xml indentation [FIX] indentation --- l10n_it_pec/view/partner_view.xml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/l10n_it_pec/view/partner_view.xml b/l10n_it_pec/view/partner_view.xml index 0e78614e0826..69fd0a417708 100644 --- a/l10n_it_pec/view/partner_view.xml +++ b/l10n_it_pec/view/partner_view.xml @@ -1,7 +1,6 @@ - res.partner.pec.form res.partner @@ -13,5 +12,31 @@ + + res.partner.pec.tree + res.partner + + + + + + + + + + res.partner.pec.kanban + res.partner + + + + + + +
  • + PEC: +
  • +
    +
    +
    From 35d4cbc854cda01cefb2d9d51152073054bfdda9 Mon Sep 17 00:00:00 2001 From: Lorenzo Battistini Date: Thu, 8 Jan 2015 11:48:27 +0100 Subject: [PATCH 07/22] [IMP] the bold text is really out of place --- l10n_it_pec/view/partner_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_it_pec/view/partner_view.xml b/l10n_it_pec/view/partner_view.xml index 69fd0a417708..a45035f76a73 100644 --- a/l10n_it_pec/view/partner_view.xml +++ b/l10n_it_pec/view/partner_view.xml @@ -33,7 +33,7 @@
  • - PEC: + (PEC)
  • From 77974951f742d96e92504cd287d576cfbe99f00b Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Mon, 2 Mar 2015 17:25:29 +0100 Subject: [PATCH 08/22] Add OCA as author of OCA addons In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association. --- l10n_it_pec/__openerp__.py | 2 +- l10n_it_pec/i18n/en.po | 33 +++++++++++++++++++++++++++++++++ l10n_it_pec/i18n/it.po | 26 ++++++++++++++++---------- 3 files changed, 50 insertions(+), 11 deletions(-) create mode 100644 l10n_it_pec/i18n/en.po diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py index b0992531f0a1..d7b1ce7c0fd0 100644 --- a/l10n_it_pec/__openerp__.py +++ b/l10n_it_pec/__openerp__.py @@ -29,7 +29,7 @@ - Add Pec Mail Field in Partner Profile """, - 'author': 'OpenERP Italian Community', + 'author': "OpenERP Italian Community,Odoo Community Association (OCA)", 'website': 'http://www.openerp-italia.org', 'license': 'AGPL-3', 'depends': ['base'], diff --git a/l10n_it_pec/i18n/en.po b/l10n_it_pec/i18n/en.po new file mode 100644 index 000000000000..c2404243b029 --- /dev/null +++ b/l10n_it_pec/i18n/en.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-01 13:08+0000\n" +"PO-Revision-Date: 2015-05-27 19:59+0000\n" +"Last-Translator: Maxime Chambreuil \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view +msgid "(PEC)" +msgstr "(PEC)" + +#. module: l10n_it_pec +#: field:res.partner,pec_mail:0 +msgid "PEC Mail" +msgstr "PEC Mail" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po index 808dfe7fbb44..f7e2634c5e6f 100644 --- a/l10n_it_pec/i18n/it.po +++ b/l10n_it_pec/i18n/it.po @@ -1,21 +1,27 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * l10n_it_pec -# +# * l10n_it_pec +# +# Translators: +# Lorenzo Battistini , 2015 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0rc1\n" +"Project-Id-Version: l10n-italy (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-12 20:46+0000\n" -"PO-Revision-Date: 2014-09-12 22:54+0100\n" -"Last-Translator: Franco Tampieri \n" -"Language-Team: \n" +"POT-Creation-Date: 2015-09-01 13:08+0000\n" +"PO-Revision-Date: 2015-07-29 10:52+0000\n" +"Last-Translator: Lorenzo Battistini \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: \n" "Language: it\n" -"X-Generator: Poedit 1.6.9\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view +msgid "(PEC)" +msgstr "(PEC)" #. module: l10n_it_pec #: field:res.partner,pec_mail:0 From b69d5272c8047f69530ee896660e12f4397531de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:01:34 +0200 Subject: [PATCH 09/22] [UPD] prefix versions with 8.0 --- l10n_it_pec/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py index d7b1ce7c0fd0..5362c9e59501 100644 --- a/l10n_it_pec/__openerp__.py +++ b/l10n_it_pec/__openerp__.py @@ -20,7 +20,7 @@ ############################################################################## { 'name': 'Pec Mail', - 'version': '0.1', + 'version': '8.0.0.1.0', 'category': 'Localisation/Italy', 'description': """Italian Localisation module - Pec Mail From e8073c38a781433d4d3ac544cde79373d45b5980 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 08:17:13 +0200 Subject: [PATCH 10/22] [MIG] Make modules uninstallable --- l10n_it_pec/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__openerp__.py index 5362c9e59501..e7bb8f0d39d2 100644 --- a/l10n_it_pec/__openerp__.py +++ b/l10n_it_pec/__openerp__.py @@ -40,5 +40,5 @@ 'demo': [], 'test': [], 'active': False, - 'installable': True + 'installable': False } From 734a20480d5ffdc2c0129ccd53c58b8d56abed38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 26 Aug 2016 17:08:29 +0200 Subject: [PATCH 11/22] [FIX] remove en.po that was erroneously created by transbot --- l10n_it_pec/i18n/en.po | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 l10n_it_pec/i18n/en.po diff --git a/l10n_it_pec/i18n/en.po b/l10n_it_pec/i18n/en.po deleted file mode 100644 index c2404243b029..000000000000 --- a/l10n_it_pec/i18n/en.po +++ /dev/null @@ -1,33 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * l10n_it_pec -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: l10n-italy (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 13:08+0000\n" -"PO-Revision-Date: 2015-05-27 19:59+0000\n" -"Last-Translator: Maxime Chambreuil \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: l10n_it_pec -#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view -msgid "(PEC)" -msgstr "(PEC)" - -#. module: l10n_it_pec -#: field:res.partner,pec_mail:0 -msgid "PEC Mail" -msgstr "PEC Mail" - -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" From 79fe3cc1d420129fa6f8545ac7a89ce4580ed8de Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:55:16 +0200 Subject: [PATCH 12/22] [MIG] Rename manifest files --- .../{__openerp__.py => __manifest__.py} | 0 l10n_it_pec/i18n/es.po | 33 ++++++++++++++++++ l10n_it_pec/i18n/sl.po | 34 +++++++++++++++++++ 3 files changed, 67 insertions(+) rename l10n_it_pec/{__openerp__.py => __manifest__.py} (100%) create mode 100644 l10n_it_pec/i18n/es.po create mode 100644 l10n_it_pec/i18n/sl.po diff --git a/l10n_it_pec/__openerp__.py b/l10n_it_pec/__manifest__.py similarity index 100% rename from l10n_it_pec/__openerp__.py rename to l10n_it_pec/__manifest__.py diff --git a/l10n_it_pec/i18n/es.po b/l10n_it_pec/i18n/es.po new file mode 100644 index 000000000000..5f7be5c654c3 --- /dev/null +++ b/l10n_it_pec/i18n/es.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 08:05+0000\n" +"PO-Revision-Date: 2016-01-14 07:30+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view +msgid "(PEC)" +msgstr "" + +#. module: l10n_it_pec +#: field:res.partner,pec_mail:0 +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/sl.po b/l10n_it_pec/i18n/sl.po new file mode 100644 index 000000000000..6b3aceb99d70 --- /dev/null +++ b/l10n_it_pec/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-02 17:45+0000\n" +"PO-Revision-Date: 2016-03-02 07:20+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: l10n_it_pec +#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view +msgid "(PEC)" +msgstr "(Certificirana E-pošta)" + +#. module: l10n_it_pec +#: field:res.partner,pec_mail:0 +msgid "PEC Mail" +msgstr "Certificirana e-pošta" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" From 4200ebcb01e2a0ecda5ab6b10439cd5fe484dd2f Mon Sep 17 00:00:00 2001 From: Francesco Apruzzese Date: Thu, 20 Oct 2016 15:07:49 +0200 Subject: [PATCH 13/22] [MIG] Migration to 10. Module installable [IMP] Code compatible with Odoo 10 [IMP] OCA conventional name for directories [FIX] Correct authors and website --- l10n_it_pec/AUTHORS.txt | 1 - l10n_it_pec/README.rst | 44 ++++++++++++++++++++++++++++ l10n_it_pec/__init__.py | 25 +++------------- l10n_it_pec/__manifest__.py | 47 +++++++----------------------- l10n_it_pec/i18n/am.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/ar.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/bg.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/bs.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/ca.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/cs.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/da.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/de.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/el_GR.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/en_GB.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/es_AR.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/es_CR.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/es_EC.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/es_MX.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/es_VE.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/et.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/fi.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/fr.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/fr_CA.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/fr_CH.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/gl.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/hr.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/hr_HR.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/hu.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/it.po | 24 ++++++++------- l10n_it_pec/i18n/ja.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/lt.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/lv.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/mk.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/mn.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/nb.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/nb_NO.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/nl.po | 33 +++++++++++++++++++++ l10n_it_pec/i18n/nl_BE.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/pl.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/pt.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/pt_BR.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/pt_PT.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/ro.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/ru.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/sl.po | 19 ++++++------ l10n_it_pec/i18n/sr@latin.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/sv.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/th.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/tr.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/vi.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/zh_CN.po | 34 +++++++++++++++++++++ l10n_it_pec/i18n/zh_TW.po | 34 +++++++++++++++++++++ l10n_it_pec/model/__init__.py | 22 -------------- l10n_it_pec/model/partner.py | 28 ------------------ l10n_it_pec/models/__init__.py | 5 ++++ l10n_it_pec/models/partner.py | 11 +++++++ l10n_it_pec/view/partner_view.xml | 42 -------------------------- l10n_it_pec/views/partner_view.xml | 40 +++++++++++++++++++++++++ 58 files changed, 1696 insertions(+), 170 deletions(-) delete mode 100644 l10n_it_pec/AUTHORS.txt create mode 100644 l10n_it_pec/README.rst create mode 100644 l10n_it_pec/i18n/am.po create mode 100644 l10n_it_pec/i18n/ar.po create mode 100644 l10n_it_pec/i18n/bg.po create mode 100644 l10n_it_pec/i18n/bs.po create mode 100644 l10n_it_pec/i18n/ca.po create mode 100644 l10n_it_pec/i18n/cs.po create mode 100644 l10n_it_pec/i18n/da.po create mode 100644 l10n_it_pec/i18n/de.po create mode 100644 l10n_it_pec/i18n/el_GR.po create mode 100644 l10n_it_pec/i18n/en_GB.po create mode 100644 l10n_it_pec/i18n/es_AR.po create mode 100644 l10n_it_pec/i18n/es_CR.po create mode 100644 l10n_it_pec/i18n/es_EC.po create mode 100644 l10n_it_pec/i18n/es_MX.po create mode 100644 l10n_it_pec/i18n/es_VE.po create mode 100644 l10n_it_pec/i18n/et.po create mode 100644 l10n_it_pec/i18n/fi.po create mode 100644 l10n_it_pec/i18n/fr.po create mode 100644 l10n_it_pec/i18n/fr_CA.po create mode 100644 l10n_it_pec/i18n/fr_CH.po create mode 100644 l10n_it_pec/i18n/gl.po create mode 100644 l10n_it_pec/i18n/hr.po create mode 100644 l10n_it_pec/i18n/hr_HR.po create mode 100644 l10n_it_pec/i18n/hu.po create mode 100644 l10n_it_pec/i18n/ja.po create mode 100644 l10n_it_pec/i18n/lt.po create mode 100644 l10n_it_pec/i18n/lv.po create mode 100644 l10n_it_pec/i18n/mk.po create mode 100644 l10n_it_pec/i18n/mn.po create mode 100644 l10n_it_pec/i18n/nb.po create mode 100644 l10n_it_pec/i18n/nb_NO.po create mode 100644 l10n_it_pec/i18n/nl.po create mode 100644 l10n_it_pec/i18n/nl_BE.po create mode 100644 l10n_it_pec/i18n/pl.po create mode 100644 l10n_it_pec/i18n/pt.po create mode 100644 l10n_it_pec/i18n/pt_BR.po create mode 100644 l10n_it_pec/i18n/pt_PT.po create mode 100644 l10n_it_pec/i18n/ro.po create mode 100644 l10n_it_pec/i18n/ru.po create mode 100644 l10n_it_pec/i18n/sr@latin.po create mode 100644 l10n_it_pec/i18n/sv.po create mode 100644 l10n_it_pec/i18n/th.po create mode 100644 l10n_it_pec/i18n/tr.po create mode 100644 l10n_it_pec/i18n/vi.po create mode 100644 l10n_it_pec/i18n/zh_CN.po create mode 100644 l10n_it_pec/i18n/zh_TW.po delete mode 100644 l10n_it_pec/model/__init__.py delete mode 100644 l10n_it_pec/model/partner.py create mode 100644 l10n_it_pec/models/__init__.py create mode 100644 l10n_it_pec/models/partner.py delete mode 100644 l10n_it_pec/view/partner_view.xml create mode 100644 l10n_it_pec/views/partner_view.xml diff --git a/l10n_it_pec/AUTHORS.txt b/l10n_it_pec/AUTHORS.txt deleted file mode 100644 index b8b6a7f97498..000000000000 --- a/l10n_it_pec/AUTHORS.txt +++ /dev/null @@ -1 +0,0 @@ -Franco Tampieri \ No newline at end of file diff --git a/l10n_it_pec/README.rst b/l10n_it_pec/README.rst new file mode 100644 index 000000000000..e4c7cc69386c --- /dev/null +++ b/l10n_it_pec/README.rst @@ -0,0 +1,44 @@ +.. 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 + +======== +PEC Mail +======== + +Add PEC Mail field in partner profile + + +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. + +Credits +======= + + +Contributors +------------ + +* Franco Tampieri +* Francesco Apruzzese + + +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. \ No newline at end of file diff --git a/l10n_it_pec/__init__.py b/l10n_it_pec/__init__.py index 78ec3855ca27..c8b61710a7dd 100644 --- a/l10n_it_pec/__init__.py +++ b/l10n_it_pec/__init__.py @@ -1,22 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014 Associazione Odoo Italia -# (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright 2014 Associazione Odoo Italia () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import model +from . import models diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index e7bb8f0d39d2..24525e2490de 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -1,44 +1,17 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014 Associazione Odoo Italia -# (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright 2014 Associazione Odoo Italia () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + { 'name': 'Pec Mail', - 'version': '8.0.0.1.0', - 'category': 'Localisation/Italy', - 'description': """Italian Localisation module - Pec Mail - -Funcionalities: - -- Add Pec Mail Field in Partner Profile - -""", - 'author': "OpenERP Italian Community,Odoo Community Association (OCA)", - 'website': 'http://www.openerp-italia.org', + 'version': '10.0.1.0.0', + 'category': 'Localization/Italy', + 'author': "Odoo Italia Network,Odoo Community Association (OCA)", + 'website': 'https://odoo-community.org/', 'license': 'AGPL-3', 'depends': ['base'], 'data': [ - 'view/partner_view.xml', + 'views/partner_view.xml', ], - 'qweb': [], - 'demo': [], - 'test': [], - 'active': False, - 'installable': False + 'installable': True, } diff --git a/l10n_it_pec/i18n/am.po b/l10n_it_pec/i18n/am.po new file mode 100644 index 000000000000..6fe2745ad0db --- /dev/null +++ b/l10n_it_pec/i18n/am.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "ተባባሪ" diff --git a/l10n_it_pec/i18n/ar.po b/l10n_it_pec/i18n/ar.po new file mode 100644 index 000000000000..a1540703e67e --- /dev/null +++ b/l10n_it_pec/i18n/ar.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "الشريك" diff --git a/l10n_it_pec/i18n/bg.po b/l10n_it_pec/i18n/bg.po new file mode 100644 index 000000000000..f0a48160ee81 --- /dev/null +++ b/l10n_it_pec/i18n/bg.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Партньор" diff --git a/l10n_it_pec/i18n/bs.po b/l10n_it_pec/i18n/bs.po new file mode 100644 index 000000000000..0f57ae95ca6b --- /dev/null +++ b/l10n_it_pec/i18n/bs.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/ca.po b/l10n_it_pec/i18n/ca.po new file mode 100644 index 000000000000..d4758402f747 --- /dev/null +++ b/l10n_it_pec/i18n/ca.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/cs.po b/l10n_it_pec/i18n/cs.po new file mode 100644 index 000000000000..8f750bf86cc1 --- /dev/null +++ b/l10n_it_pec/i18n/cs.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Společník" diff --git a/l10n_it_pec/i18n/da.po b/l10n_it_pec/i18n/da.po new file mode 100644 index 000000000000..0ef8ed5aa71b --- /dev/null +++ b/l10n_it_pec/i18n/da.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/de.po b/l10n_it_pec/i18n/de.po new file mode 100644 index 000000000000..c82a14da9528 --- /dev/null +++ b/l10n_it_pec/i18n/de.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/el_GR.po b/l10n_it_pec/i18n/el_GR.po new file mode 100644 index 000000000000..a3b2ef521114 --- /dev/null +++ b/l10n_it_pec/i18n/el_GR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Συνεργάτης" diff --git a/l10n_it_pec/i18n/en_GB.po b/l10n_it_pec/i18n/en_GB.po new file mode 100644 index 000000000000..f1c89a24f6a2 --- /dev/null +++ b/l10n_it_pec/i18n/en_GB.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/es_AR.po b/l10n_it_pec/i18n/es_AR.po new file mode 100644 index 000000000000..613e89f7ed81 --- /dev/null +++ b/l10n_it_pec/i18n/es_AR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-08 03:45+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Compañero" diff --git a/l10n_it_pec/i18n/es_CR.po b/l10n_it_pec/i18n/es_CR.po new file mode 100644 index 000000000000..e07f4703c5c1 --- /dev/null +++ b/l10n_it_pec/i18n/es_CR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_EC.po b/l10n_it_pec/i18n/es_EC.po new file mode 100644 index 000000000000..06ab1403d80c --- /dev/null +++ b/l10n_it_pec/i18n/es_EC.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_MX.po b/l10n_it_pec/i18n/es_MX.po new file mode 100644 index 000000000000..73af5bae4a44 --- /dev/null +++ b/l10n_it_pec/i18n/es_MX.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_VE.po b/l10n_it_pec/i18n/es_VE.po new file mode 100644 index 000000000000..f16dd209e430 --- /dev/null +++ b/l10n_it_pec/i18n/es_VE.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/et.po b/l10n_it_pec/i18n/et.po new file mode 100644 index 000000000000..cf7e3ed73d6e --- /dev/null +++ b/l10n_it_pec/i18n/et.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/fi.po b/l10n_it_pec/i18n/fi.po new file mode 100644 index 000000000000..12481c251db2 --- /dev/null +++ b/l10n_it_pec/i18n/fi.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Kumppani" diff --git a/l10n_it_pec/i18n/fr.po b/l10n_it_pec/i18n/fr.po new file mode 100644 index 000000000000..e4a9c335f50f --- /dev/null +++ b/l10n_it_pec/i18n/fr.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/fr_CA.po b/l10n_it_pec/i18n/fr_CA.po new file mode 100644 index 000000000000..41245f54a420 --- /dev/null +++ b/l10n_it_pec/i18n/fr_CA.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/fr_CH.po b/l10n_it_pec/i18n/fr_CH.po new file mode 100644 index 000000000000..554825eb8baa --- /dev/null +++ b/l10n_it_pec/i18n/fr_CH.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/gl.po b/l10n_it_pec/i18n/gl.po new file mode 100644 index 000000000000..6ad8b13bf1ef --- /dev/null +++ b/l10n_it_pec/i18n/gl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/l10n_it_pec/i18n/hr.po b/l10n_it_pec/i18n/hr.po new file mode 100644 index 000000000000..dbe78754d5e0 --- /dev/null +++ b/l10n_it_pec/i18n/hr.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/hr_HR.po b/l10n_it_pec/i18n/hr_HR.po new file mode 100644 index 000000000000..d84f0ea165bb --- /dev/null +++ b/l10n_it_pec/i18n/hr_HR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/hu.po b/l10n_it_pec/i18n/hu.po new file mode 100644 index 000000000000..4a4f08dc4fcb --- /dev/null +++ b/l10n_it_pec/i18n/hu.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po index f7e2634c5e6f..7b4777f06564 100644 --- a/l10n_it_pec/i18n/it.po +++ b/l10n_it_pec/i18n/it.po @@ -3,15 +3,18 @@ # * l10n_it_pec # # Translators: +# Franco Tampieri , 2017 # Lorenzo Battistini , 2015 +# Paolo Valier, 2016 +# Paolo Valier, 2016 msgid "" msgstr "" -"Project-Id-Version: l10n-italy (8.0)\n" +"Project-Id-Version: l10n-italy (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 13:08+0000\n" -"PO-Revision-Date: 2015-07-29 10:52+0000\n" -"Last-Translator: Lorenzo Battistini \n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/it/)\n" +"POT-Creation-Date: 2017-08-07 15:11+0000\n" +"PO-Revision-Date: 2017-11-30 13:16+0000\n" +"Last-Translator: Franco Tampieri \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,14 +22,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view -msgid "(PEC)" -msgstr "(PEC)" +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr " (PEC)" #. module: l10n_it_pec -#: field:res.partner,pec_mail:0 +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" -msgstr "Mail PEC" +msgstr "PEC Email" #. module: l10n_it_pec #: model:ir.model,name:l10n_it_pec.model_res_partner diff --git a/l10n_it_pec/i18n/ja.po b/l10n_it_pec/i18n/ja.po new file mode 100644 index 000000000000..ee3d9283f72f --- /dev/null +++ b/l10n_it_pec/i18n/ja.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "パートナ" diff --git a/l10n_it_pec/i18n/lt.po b/l10n_it_pec/i18n/lt.po new file mode 100644 index 000000000000..af00595cd034 --- /dev/null +++ b/l10n_it_pec/i18n/lt.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partneris" diff --git a/l10n_it_pec/i18n/lv.po b/l10n_it_pec/i18n/lv.po new file mode 100644 index 000000000000..48cfbc67d043 --- /dev/null +++ b/l10n_it_pec/i18n/lv.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partneris" diff --git a/l10n_it_pec/i18n/mk.po b/l10n_it_pec/i18n/mk.po new file mode 100644 index 000000000000..5fc2f6eb14c5 --- /dev/null +++ b/l10n_it_pec/i18n/mk.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Партнер" diff --git a/l10n_it_pec/i18n/mn.po b/l10n_it_pec/i18n/mn.po new file mode 100644 index 000000000000..4c1f394ef9b0 --- /dev/null +++ b/l10n_it_pec/i18n/mn.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Харилцагч" diff --git a/l10n_it_pec/i18n/nb.po b/l10n_it_pec/i18n/nb.po new file mode 100644 index 000000000000..64bfdefcf57c --- /dev/null +++ b/l10n_it_pec/i18n/nb.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/nb_NO.po b/l10n_it_pec/i18n/nb_NO.po new file mode 100644 index 000000000000..7d1f2fe00412 --- /dev/null +++ b/l10n_it_pec/i18n/nb_NO.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/nl.po b/l10n_it_pec/i18n/nl.po new file mode 100644 index 000000000000..39feb648f9a3 --- /dev/null +++ b/l10n_it_pec/i18n/nl.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 19:47+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Relatie" diff --git a/l10n_it_pec/i18n/nl_BE.po b/l10n_it_pec/i18n/nl_BE.po new file mode 100644 index 000000000000..48fe301ad784 --- /dev/null +++ b/l10n_it_pec/i18n/nl_BE.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Relatie" diff --git a/l10n_it_pec/i18n/pl.po b/l10n_it_pec/i18n/pl.po new file mode 100644 index 000000000000..280b08b880fc --- /dev/null +++ b/l10n_it_pec/i18n/pl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/pt.po b/l10n_it_pec/i18n/pt.po new file mode 100644 index 000000000000..f380d6ec33bf --- /dev/null +++ b/l10n_it_pec/i18n/pt.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/pt_BR.po b/l10n_it_pec/i18n/pt_BR.po new file mode 100644 index 000000000000..4b12b2364630 --- /dev/null +++ b/l10n_it_pec/i18n/pt_BR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/pt_PT.po b/l10n_it_pec/i18n/pt_PT.po new file mode 100644 index 000000000000..3cca26bb0fb3 --- /dev/null +++ b/l10n_it_pec/i18n/pt_PT.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/ro.po b/l10n_it_pec/i18n/ro.po new file mode 100644 index 000000000000..0abd3e4bf632 --- /dev/null +++ b/l10n_it_pec/i18n/ro.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partener" diff --git a/l10n_it_pec/i18n/ru.po b/l10n_it_pec/i18n/ru.po new file mode 100644 index 000000000000..425de6325b1b --- /dev/null +++ b/l10n_it_pec/i18n/ru.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Контрагент" diff --git a/l10n_it_pec/i18n/sl.po b/l10n_it_pec/i18n/sl.po index 6b3aceb99d70..17310a49f4a2 100644 --- a/l10n_it_pec/i18n/sl.po +++ b/l10n_it_pec/i18n/sl.po @@ -6,12 +6,12 @@ # Matjaž Mozetič , 2016 msgid "" msgstr "" -"Project-Id-Version: l10n-italy (8.0)\n" +"Project-Id-Version: l10n-italy (10.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-02 17:45+0000\n" -"PO-Revision-Date: 2016-03-02 07:20+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/sl/)\n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,12 +19,13 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: l10n_it_pec -#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view -msgid "(PEC)" -msgstr "(Certificirana E-pošta)" +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" #. module: l10n_it_pec -#: field:res.partner,pec_mail:0 +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "Certificirana e-pošta" diff --git a/l10n_it_pec/i18n/sr@latin.po b/l10n_it_pec/i18n/sr@latin.po new file mode 100644 index 000000000000..460cdc75f629 --- /dev/null +++ b/l10n_it_pec/i18n/sr@latin.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/l10n_it_pec/i18n/sv.po b/l10n_it_pec/i18n/sv.po new file mode 100644 index 000000000000..82068f262d2d --- /dev/null +++ b/l10n_it_pec/i18n/sv.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Företag" diff --git a/l10n_it_pec/i18n/th.po b/l10n_it_pec/i18n/th.po new file mode 100644 index 000000000000..2d9c7a05e52c --- /dev/null +++ b/l10n_it_pec/i18n/th.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "พาร์ทเนอร์" diff --git a/l10n_it_pec/i18n/tr.po b/l10n_it_pec/i18n/tr.po new file mode 100644 index 000000000000..3c9a68c2666c --- /dev/null +++ b/l10n_it_pec/i18n/tr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "İş Ortağı" diff --git a/l10n_it_pec/i18n/vi.po b/l10n_it_pec/i18n/vi.po new file mode 100644 index 000000000000..b9849075cc40 --- /dev/null +++ b/l10n_it_pec/i18n/vi.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "Đối tác" diff --git a/l10n_it_pec/i18n/zh_CN.po b/l10n_it_pec/i18n/zh_CN.po new file mode 100644 index 000000000000..792f64f01042 --- /dev/null +++ b/l10n_it_pec/i18n/zh_CN.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "业务伙伴" diff --git a/l10n_it_pec/i18n/zh_TW.po b/l10n_it_pec/i18n/zh_TW.po new file mode 100644 index 000000000000..c5e013f4a1e2 --- /dev/null +++ b/l10n_it_pec/i18n/zh_TW.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: l10n-italy (10.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-12 02:39+0000\n" +"PO-Revision-Date: 2016-10-20 15:58+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Partner" +msgstr "夥伴" diff --git a/l10n_it_pec/model/__init__.py b/l10n_it_pec/model/__init__.py deleted file mode 100644 index 8149ce87f12b..000000000000 --- a/l10n_it_pec/model/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014 Associazione Odoo Italia -# (). -# -# 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 . import partner diff --git a/l10n_it_pec/model/partner.py b/l10n_it_pec/model/partner.py deleted file mode 100644 index 954fed90c81e..000000000000 --- a/l10n_it_pec/model/partner.py +++ /dev/null @@ -1,28 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014 Associazione Odoo Italia -# (). -# -# 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 - - -class ResPartner(models.Model): - _inherit = "res.partner" - - pec_mail = fields.Char(string='PEC Mail') diff --git a/l10n_it_pec/models/__init__.py b/l10n_it_pec/models/__init__.py new file mode 100644 index 000000000000..419ea2af837d --- /dev/null +++ b/l10n_it_pec/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2014 Associazione Odoo Italia () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import partner diff --git a/l10n_it_pec/models/partner.py b/l10n_it_pec/models/partner.py new file mode 100644 index 000000000000..c1d89e70ea3b --- /dev/null +++ b/l10n_it_pec/models/partner.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Copyright 2014 Associazione Odoo Italia () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class ResPartner(models.Model): + _inherit = "res.partner" + + pec_mail = fields.Char(string='PEC Mail') diff --git a/l10n_it_pec/view/partner_view.xml b/l10n_it_pec/view/partner_view.xml deleted file mode 100644 index a45035f76a73..000000000000 --- a/l10n_it_pec/view/partner_view.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - res.partner.pec.form - res.partner - - - - - - - - - - res.partner.pec.tree - res.partner - - - - - - - - - - res.partner.pec.kanban - res.partner - - - - - - -
  • - (PEC) -
  • -
    -
    -
    -
    -
    diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml new file mode 100644 index 000000000000..b5f22e841d99 --- /dev/null +++ b/l10n_it_pec/views/partner_view.xml @@ -0,0 +1,40 @@ + + + + res.partner.pec.form + res.partner + + + + + + + + + + res.partner.pec.tree + res.partner + + + + + + + + + + res.partner.pec.kanban + res.partner + + + + + + +
  • + (PEC) +
  • +
    +
    +
    +
    From bebd19e49eaa5adb76aef48d84b68fa69e93f095 Mon Sep 17 00:00:00 2001 From: Francesco Apruzzese Date: Wed, 13 Dec 2017 16:15:22 +0100 Subject: [PATCH 14/22] [MIG] l10n_it_pec: Migration to 11.0 --- l10n_it_pec/__manifest__.py | 2 +- l10n_it_pec/i18n/am.po | 18 +++++++++++------- l10n_it_pec/i18n/ar.po | 21 +++++++++++++-------- l10n_it_pec/i18n/bg.po | 19 ++++++++++++------- l10n_it_pec/i18n/bs.po | 21 +++++++++++++-------- l10n_it_pec/i18n/ca.po | 18 +++++++++++------- l10n_it_pec/i18n/cs.po | 18 +++++++++++------- l10n_it_pec/i18n/da.po | 18 +++++++++++------- l10n_it_pec/i18n/de.po | 19 ++++++++++++------- l10n_it_pec/i18n/el_GR.po | 18 +++++++++++------- l10n_it_pec/i18n/en_GB.po | 18 +++++++++++------- l10n_it_pec/i18n/es.po | 25 +++++++++++++++---------- l10n_it_pec/i18n/es_AR.po | 18 +++++++++++------- l10n_it_pec/i18n/es_CR.po | 18 +++++++++++------- l10n_it_pec/i18n/es_EC.po | 18 +++++++++++------- l10n_it_pec/i18n/es_MX.po | 18 +++++++++++------- l10n_it_pec/i18n/es_VE.po | 18 +++++++++++------- l10n_it_pec/i18n/et.po | 18 +++++++++++------- l10n_it_pec/i18n/fi.po | 18 +++++++++++------- l10n_it_pec/i18n/fr.po | 19 ++++++++++++------- l10n_it_pec/i18n/fr_CA.po | 18 +++++++++++------- l10n_it_pec/i18n/fr_CH.po | 18 +++++++++++------- l10n_it_pec/i18n/gl.po | 18 +++++++++++------- l10n_it_pec/i18n/hr.po | 22 ++++++++++++++-------- l10n_it_pec/i18n/hr_HR.po | 21 +++++++++++++-------- l10n_it_pec/i18n/hu.po | 18 +++++++++++------- l10n_it_pec/i18n/it.po | 32 +++++++++++++++----------------- l10n_it_pec/i18n/ja.po | 18 +++++++++++------- l10n_it_pec/i18n/l10n_it_pec.pot | 31 +++++++++++++++++++++++++++++++ l10n_it_pec/i18n/lt.po | 21 +++++++++++++-------- l10n_it_pec/i18n/lv.po | 21 +++++++++++++-------- l10n_it_pec/i18n/mk.po | 18 +++++++++++------- l10n_it_pec/i18n/mn.po | 18 +++++++++++------- l10n_it_pec/i18n/nb.po | 18 +++++++++++------- l10n_it_pec/i18n/nb_NO.po | 19 ++++++++++++------- l10n_it_pec/i18n/nl.po | 19 ++++++++++++------- l10n_it_pec/i18n/nl_BE.po | 18 +++++++++++------- l10n_it_pec/i18n/pl.po | 22 ++++++++++++++-------- l10n_it_pec/i18n/pt.po | 18 +++++++++++------- l10n_it_pec/i18n/pt_BR.po | 18 +++++++++++------- l10n_it_pec/i18n/pt_PT.po | 18 +++++++++++------- l10n_it_pec/i18n/ro.po | 21 +++++++++++++-------- l10n_it_pec/i18n/ru.po | 22 ++++++++++++++-------- l10n_it_pec/i18n/sl.po | 29 +++++++++++++++-------------- l10n_it_pec/i18n/sr@latin.po | 21 +++++++++++++-------- l10n_it_pec/i18n/sv.po | 18 +++++++++++------- l10n_it_pec/i18n/th.po | 18 +++++++++++------- l10n_it_pec/i18n/tr.po | 18 +++++++++++------- l10n_it_pec/i18n/vi.po | 18 +++++++++++------- l10n_it_pec/i18n/zh_CN.po | 18 +++++++++++------- l10n_it_pec/i18n/zh_TW.po | 18 +++++++++++------- 51 files changed, 611 insertions(+), 374 deletions(-) create mode 100644 l10n_it_pec/i18n/l10n_it_pec.pot diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 24525e2490de..60179e221838 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Pec Mail', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Localization/Italy', 'author': "Odoo Italia Network,Odoo Community Association (OCA)", 'website': 'https://odoo-community.org/', diff --git a/l10n_it_pec/i18n/am.po b/l10n_it_pec/i18n/am.po index 6fe2745ad0db..fbc51b9901dd 100644 --- a/l10n_it_pec/i18n/am.po +++ b/l10n_it_pec/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Amharic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/am/)\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "ተባባሪ" +#~ msgid "Partner" +#~ msgstr "ተባባሪ" diff --git a/l10n_it_pec/i18n/ar.po b/l10n_it_pec/i18n/ar.po index a1540703e67e..6f7890261811 100644 --- a/l10n_it_pec/i18n/ar.po +++ b/l10n_it_pec/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Arabic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "الشريك" +#~ msgid "Partner" +#~ msgstr "الشريك" diff --git a/l10n_it_pec/i18n/bg.po b/l10n_it_pec/i18n/bg.po index f0a48160ee81..eb2a95d4f9a7 100644 --- a/l10n_it_pec/i18n/bg.po +++ b/l10n_it_pec/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,12 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Партньор" +#~ msgid "Partner" +#~ msgstr "Партньор" diff --git a/l10n_it_pec/i18n/bs.po b/l10n_it_pec/i18n/bs.po index 0f57ae95ca6b..30f0638e4fcb 100644 --- a/l10n_it_pec/i18n/bs.po +++ b/l10n_it_pec/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/bs/)\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/ca.po b/l10n_it_pec/i18n/ca.po index d4758402f747..266124e82395 100644 --- a/l10n_it_pec/i18n/ca.po +++ b/l10n_it_pec/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Catalan (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ca/)\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/cs.po b/l10n_it_pec/i18n/cs.po index 8f750bf86cc1..b8eea01aafed 100644 --- a/l10n_it_pec/i18n/cs.po +++ b/l10n_it_pec/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Czech (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/cs/)\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Společník" +#~ msgid "Partner" +#~ msgstr "Společník" diff --git a/l10n_it_pec/i18n/da.po b/l10n_it_pec/i18n/da.po index 0ef8ed5aa71b..def0d3f0d822 100644 --- a/l10n_it_pec/i18n/da.po +++ b/l10n_it_pec/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Danish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/de.po b/l10n_it_pec/i18n/de.po index c82a14da9528..aa9e64521732 100644 --- a/l10n_it_pec/i18n/de.po +++ b/l10n_it_pec/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: German (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/de/)\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,12 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/el_GR.po b/l10n_it_pec/i18n/el_GR.po index a3b2ef521114..8abdc95786f4 100644 --- a/l10n_it_pec/i18n/el_GR.po +++ b/l10n_it_pec/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/el_GR/)\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Συνεργάτης" +#~ msgid "Partner" +#~ msgstr "Συνεργάτης" diff --git a/l10n_it_pec/i18n/en_GB.po b/l10n_it_pec/i18n/en_GB.po index f1c89a24f6a2..37dee4e36042 100644 --- a/l10n_it_pec/i18n/en_GB.po +++ b/l10n_it_pec/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/en_GB/)\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"l10n-italy-10-0/language/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/es.po b/l10n_it_pec/i18n/es.po index 5f7be5c654c3..a458abf6d192 100644 --- a/l10n_it_pec/i18n/es.po +++ b/l10n_it_pec/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,24 +10,29 @@ msgstr "" "POT-Creation-Date: 2016-01-19 08:05+0000\n" "PO-Revision-Date: 2016-01-14 07:30+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-l10n-italy-8-0/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-l10n-italy-8-0/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: view:res.partner:l10n_it_pec.res_partner_kanban_pec_view -msgid "(PEC)" +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" msgstr "" #. module: l10n_it_pec -#: field:res.partner,pec_mail:0 -msgid "PEC Mail" +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/es_AR.po b/l10n_it_pec/i18n/es_AR.po index 613e89f7ed81..58f0f23711da 100644 --- a/l10n_it_pec/i18n/es_AR.po +++ b/l10n_it_pec/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-12-08 03:45+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_AR/)\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Compañero" +#~ msgid "Partner" +#~ msgstr "Compañero" diff --git a/l10n_it_pec/i18n/es_CR.po b/l10n_it_pec/i18n/es_CR.po index e07f4703c5c1..60e5a99600e5 100644 --- a/l10n_it_pec/i18n/es_CR.po +++ b/l10n_it_pec/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_EC.po b/l10n_it_pec/i18n/es_EC.po index 06ab1403d80c..231f4d2ac736 100644 --- a/l10n_it_pec/i18n/es_EC.po +++ b/l10n_it_pec/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_MX.po b/l10n_it_pec/i18n/es_MX.po index 73af5bae4a44..1b2df233086a 100644 --- a/l10n_it_pec/i18n/es_MX.po +++ b/l10n_it_pec/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_MX/)\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/es_VE.po b/l10n_it_pec/i18n/es_VE.po index f16dd209e430..58ff8df26aa3 100644 --- a/l10n_it_pec/i18n/es_VE.po +++ b/l10n_it_pec/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/et.po b/l10n_it_pec/i18n/et.po index cf7e3ed73d6e..25bef45631d8 100644 --- a/l10n_it_pec/i18n/et.po +++ b/l10n_it_pec/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Estonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/et/)\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/fi.po b/l10n_it_pec/i18n/fi.po index 12481c251db2..c6ac3c197b72 100644 --- a/l10n_it_pec/i18n/fi.po +++ b/l10n_it_pec/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fi/)\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Kumppani" +#~ msgid "Partner" +#~ msgstr "Kumppani" diff --git a/l10n_it_pec/i18n/fr.po b/l10n_it_pec/i18n/fr.po index e4a9c335f50f..d260d88f8352 100644 --- a/l10n_it_pec/i18n/fr.po +++ b/l10n_it_pec/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: French (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,12 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/fr_CA.po b/l10n_it_pec/i18n/fr_CA.po index 41245f54a420..c17b8cc17b44 100644 --- a/l10n_it_pec/i18n/fr_CA.po +++ b/l10n_it_pec/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr_CA/)\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/fr_CH.po b/l10n_it_pec/i18n/fr_CH.po index 554825eb8baa..fe06e222e44d 100644 --- a/l10n_it_pec/i18n/fr_CH.po +++ b/l10n_it_pec/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/fr_CH/)\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/l10n_it_pec/i18n/gl.po b/l10n_it_pec/i18n/gl.po index 6ad8b13bf1ef..b58f8355e3a4 100644 --- a/l10n_it_pec/i18n/gl.po +++ b/l10n_it_pec/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Galician (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/gl/)\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/l10n_it_pec/i18n/hr.po b/l10n_it_pec/i18n/hr.po index dbe78754d5e0..3534f73731e5 100644 --- a/l10n_it_pec/i18n/hr.po +++ b/l10n_it_pec/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,24 +10,30 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hr/)\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/hr_HR.po b/l10n_it_pec/i18n/hr_HR.po index d84f0ea165bb..bd33ef94bff8 100644 --- a/l10n_it_pec/i18n/hr_HR.po +++ b/l10n_it_pec/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/hu.po b/l10n_it_pec/i18n/hu.po index 4a4f08dc4fcb..bcc620da1bec 100644 --- a/l10n_it_pec/i18n/hu.po +++ b/l10n_it_pec/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po index 7b4777f06564..b806a26a1f0e 100644 --- a/l10n_it_pec/i18n/it.po +++ b/l10n_it_pec/i18n/it.po @@ -1,24 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: -# Franco Tampieri , 2017 -# Lorenzo Battistini , 2015 -# Paolo Valier, 2016 -# Paolo Valier, 2016 +# Paolo Valier , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: l10n-italy (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-07 15:11+0000\n" -"PO-Revision-Date: 2017-11-30 13:16+0000\n" -"Last-Translator: Franco Tampieri \n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/it/)\n" +"POT-Creation-Date: 2017-12-30 05:35+0000\n" +"PO-Revision-Date: 2017-12-30 05:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -26,13 +24,13 @@ msgstr "" msgid " (PEC)" msgstr " (PEC)" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "Contatto" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" -msgstr "PEC Email" - -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +msgstr "Email PEC" diff --git a/l10n_it_pec/i18n/ja.po b/l10n_it_pec/i18n/ja.po index ee3d9283f72f..87354cad9406 100644 --- a/l10n_it_pec/i18n/ja.po +++ b/l10n_it_pec/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Japanese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ja/)\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "パートナ" +#~ msgid "Partner" +#~ msgstr "パートナ" diff --git a/l10n_it_pec/i18n/l10n_it_pec.pot b/l10n_it_pec/i18n/l10n_it_pec.pot new file mode 100644 index 000000000000..5565d84cff74 --- /dev/null +++ b/l10n_it_pec/i18n/l10n_it_pec.pot @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_it_pec +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_it_pec +#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +msgid " (PEC)" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +msgid "PEC Mail" +msgstr "" + diff --git a/l10n_it_pec/i18n/lt.po b/l10n_it_pec/i18n/lt.po index af00595cd034..338d96f15d41 100644 --- a/l10n_it_pec/i18n/lt.po +++ b/l10n_it_pec/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/lt/)\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partneris" +#~ msgid "Partner" +#~ msgstr "Partneris" diff --git a/l10n_it_pec/i18n/lv.po b/l10n_it_pec/i18n/lv.po index 48cfbc67d043..84723ff37f92 100644 --- a/l10n_it_pec/i18n/lv.po +++ b/l10n_it_pec/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Latvian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/lv/)\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partneris" +#~ msgid "Partner" +#~ msgstr "Partneris" diff --git a/l10n_it_pec/i18n/mk.po b/l10n_it_pec/i18n/mk.po index 5fc2f6eb14c5..eecd51b4f0e2 100644 --- a/l10n_it_pec/i18n/mk.po +++ b/l10n_it_pec/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/mk/)\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Партнер" +#~ msgid "Partner" +#~ msgstr "Партнер" diff --git a/l10n_it_pec/i18n/mn.po b/l10n_it_pec/i18n/mn.po index 4c1f394ef9b0..c37dd73b84d9 100644 --- a/l10n_it_pec/i18n/mn.po +++ b/l10n_it_pec/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/mn/)\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Харилцагч" +#~ msgid "Partner" +#~ msgstr "Харилцагч" diff --git a/l10n_it_pec/i18n/nb.po b/l10n_it_pec/i18n/nb.po index 64bfdefcf57c..9d1cdda4f7dd 100644 --- a/l10n_it_pec/i18n/nb.po +++ b/l10n_it_pec/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nb/)\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/nb_NO.po b/l10n_it_pec/i18n/nb_NO.po index 7d1f2fe00412..d7865b5489c1 100644 --- a/l10n_it_pec/i18n/nb_NO.po +++ b/l10n_it_pec/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"l10n-italy-10-0/language/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,12 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/nl.po b/l10n_it_pec/i18n/nl.po index 39feb648f9a3..23d4535d9751 100644 --- a/l10n_it_pec/i18n/nl.po +++ b/l10n_it_pec/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-11-01 19:47+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Dutch (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,12 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Relatie" +#~ msgid "Partner" +#~ msgstr "Relatie" diff --git a/l10n_it_pec/i18n/nl_BE.po b/l10n_it_pec/i18n/nl_BE.po index 48fe301ad784..174200d28fcc 100644 --- a/l10n_it_pec/i18n/nl_BE.po +++ b/l10n_it_pec/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Relatie" +#~ msgid "Partner" +#~ msgstr "Relatie" diff --git a/l10n_it_pec/i18n/pl.po b/l10n_it_pec/i18n/pl.po index 280b08b880fc..ca0cfacda882 100644 --- a/l10n_it_pec/i18n/pl.po +++ b/l10n_it_pec/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,31 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Polish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/pt.po b/l10n_it_pec/i18n/pt.po index f380d6ec33bf..4e2e7285e344 100644 --- a/l10n_it_pec/i18n/pt.po +++ b/l10n_it_pec/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#~ msgid "Partner" +#~ msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/pt_BR.po b/l10n_it_pec/i18n/pt_BR.po index 4b12b2364630..0e61b60a614d 100644 --- a/l10n_it_pec/i18n/pt_BR.po +++ b/l10n_it_pec/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#~ msgid "Partner" +#~ msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/pt_PT.po b/l10n_it_pec/i18n/pt_PT.po index 3cca26bb0fb3..8aae550c79b2 100644 --- a/l10n_it_pec/i18n/pt_PT.po +++ b/l10n_it_pec/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#~ msgid "Partner" +#~ msgstr "Parceiro" diff --git a/l10n_it_pec/i18n/ro.po b/l10n_it_pec/i18n/ro.po index 0abd3e4bf632..3908226e4e3e 100644 --- a/l10n_it_pec/i18n/ro.po +++ b/l10n_it_pec/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Romanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ro/)\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partener" +#~ msgid "Partner" +#~ msgstr "Partener" diff --git a/l10n_it_pec/i18n/ru.po b/l10n_it_pec/i18n/ru.po index 425de6325b1b..63ebf307f331 100644 --- a/l10n_it_pec/i18n/ru.po +++ b/l10n_it_pec/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,31 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Russian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Контрагент" +#~ msgid "Partner" +#~ msgstr "Контрагент" diff --git a/l10n_it_pec/i18n/sl.po b/l10n_it_pec/i18n/sl.po index 17310a49f4a2..ec4b43747637 100644 --- a/l10n_it_pec/i18n/sl.po +++ b/l10n_it_pec/i18n/sl.po @@ -1,35 +1,36 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: l10n-italy (10.0)\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-12 02:39+0000\n" -"PO-Revision-Date: 2016-10-20 15:58+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sl/)\n" +"POT-Creation-Date: 2017-12-23 03:42+0000\n" +"PO-Revision-Date: 2017-12-23 03:42+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "Certificirana e-pošta" - -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" diff --git a/l10n_it_pec/i18n/sr@latin.po b/l10n_it_pec/i18n/sr@latin.po index 460cdc75f629..db695ba885dc 100644 --- a/l10n_it_pec/i18n/sr@latin.po +++ b/l10n_it_pec/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,25 +10,30 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sr@latin/)\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/sr@latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec #: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/l10n_it_pec/i18n/sv.po b/l10n_it_pec/i18n/sv.po index 82068f262d2d..4df71ea81838 100644 --- a/l10n_it_pec/i18n/sv.po +++ b/l10n_it_pec/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Swedish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/sv/)\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Företag" +#~ msgid "Partner" +#~ msgstr "Företag" diff --git a/l10n_it_pec/i18n/th.po b/l10n_it_pec/i18n/th.po index 2d9c7a05e52c..733733cebe8c 100644 --- a/l10n_it_pec/i18n/th.po +++ b/l10n_it_pec/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Thai (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/th/)\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "พาร์ทเนอร์" +#~ msgid "Partner" +#~ msgstr "พาร์ทเนอร์" diff --git a/l10n_it_pec/i18n/tr.po b/l10n_it_pec/i18n/tr.po index 3c9a68c2666c..ff3d620d4901 100644 --- a/l10n_it_pec/i18n/tr.po +++ b/l10n_it_pec/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Turkish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/tr/)\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "İş Ortağı" +#~ msgid "Partner" +#~ msgstr "İş Ortağı" diff --git a/l10n_it_pec/i18n/vi.po b/l10n_it_pec/i18n/vi.po index b9849075cc40..0d213fd321b0 100644 --- a/l10n_it_pec/i18n/vi.po +++ b/l10n_it_pec/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/vi/)\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-l10n-italy-10-0/" +"language/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "Đối tác" +#~ msgid "Partner" +#~ msgstr "Đối tác" diff --git a/l10n_it_pec/i18n/zh_CN.po b/l10n_it_pec/i18n/zh_CN.po index 792f64f01042..d6a466443569 100644 --- a/l10n_it_pec/i18n/zh_CN.po +++ b/l10n_it_pec/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "业务伙伴" +#~ msgid "Partner" +#~ msgstr "业务伙伴" diff --git a/l10n_it_pec/i18n/zh_TW.po b/l10n_it_pec/i18n/zh_TW.po index c5e013f4a1e2..532ff34dcaa0 100644 --- a/l10n_it_pec/i18n/zh_TW.po +++ b/l10n_it_pec/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_it_pec -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2017-05-12 02:39+0000\n" "PO-Revision-Date: 2016-10-20 15:58+0000\n" "Last-Translator: <>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-l10n-italy-10-0/language/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-l10n-" +"italy-10-0/language/zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec @@ -22,13 +23,16 @@ msgstr "" msgid " (PEC)" msgstr "" +#. module: l10n_it_pec +#: model:ir.model,name:l10n_it_pec.model_res_partner +msgid "Contact" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail msgid "PEC Mail" msgstr "" -#. module: l10n_it_pec -#: model:ir.model,name:l10n_it_pec.model_res_partner -msgid "Partner" -msgstr "夥伴" +#~ msgid "Partner" +#~ msgstr "夥伴" From 507d53681bbc4edcda1fc717596a3be5c14af300 Mon Sep 17 00:00:00 2001 From: Giacomo Grasso Date: Sat, 30 Jun 2018 07:54:44 +0200 Subject: [PATCH 15/22] pec kanban view used hasclass, removed warning (#533) [11.0]: pec kanban view used hasclass, removed warning Corrected LINT CHECK=1 of merged modules for PEP8 (#544) --- l10n_it_pec/README.rst | 2 +- l10n_it_pec/__init__.py | 1 - l10n_it_pec/__manifest__.py | 1 - l10n_it_pec/models/__init__.py | 1 - l10n_it_pec/models/partner.py | 1 - l10n_it_pec/views/partner_view.xml | 2 +- 6 files changed, 2 insertions(+), 6 deletions(-) diff --git a/l10n_it_pec/README.rst b/l10n_it_pec/README.rst index e4c7cc69386c..a2a9fc8de8f6 100644 --- a/l10n_it_pec/README.rst +++ b/l10n_it_pec/README.rst @@ -41,4 +41,4 @@ 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. \ No newline at end of file +To contribute to this module, please visit https://odoo-community.org. diff --git a/l10n_it_pec/__init__.py b/l10n_it_pec/__init__.py index c8b61710a7dd..d7e10c7fadb5 100644 --- a/l10n_it_pec/__init__.py +++ b/l10n_it_pec/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Associazione Odoo Italia () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 60179e221838..98a2affbd424 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Associazione Odoo Italia () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/l10n_it_pec/models/__init__.py b/l10n_it_pec/models/__init__.py index 419ea2af837d..d54b3564b208 100644 --- a/l10n_it_pec/models/__init__.py +++ b/l10n_it_pec/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Associazione Odoo Italia () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/l10n_it_pec/models/partner.py b/l10n_it_pec/models/partner.py index c1d89e70ea3b..5c9aff7e2eaa 100644 --- a/l10n_it_pec/models/partner.py +++ b/l10n_it_pec/models/partner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2014 Associazione Odoo Italia () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml index b5f22e841d99..745f86479135 100644 --- a/l10n_it_pec/views/partner_view.xml +++ b/l10n_it_pec/views/partner_view.xml @@ -30,7 +30,7 @@ - +
  • (PEC)
  • From 597e2ed50f1b7ff50c8f33423fc2ce7c5560949b Mon Sep 17 00:00:00 2001 From: Stefano Consolaro Date: Thu, 31 Jan 2019 22:16:20 +0100 Subject: [PATCH 16/22] [MIG] l10n_it_pec: Migration to 12.0 [FIX] change manifest website --- l10n_it_pec/README.rst | 69 +++- l10n_it_pec/__manifest__.py | 10 +- l10n_it_pec/i18n/am.po | 6 +- l10n_it_pec/i18n/ar.po | 6 +- l10n_it_pec/i18n/bg.po | 6 +- l10n_it_pec/i18n/bs.po | 6 +- l10n_it_pec/i18n/ca.po | 6 +- l10n_it_pec/i18n/cs.po | 6 +- l10n_it_pec/i18n/da.po | 6 +- l10n_it_pec/i18n/de.po | 6 +- l10n_it_pec/i18n/el_GR.po | 6 +- l10n_it_pec/i18n/en_GB.po | 6 +- l10n_it_pec/i18n/es.po | 6 +- l10n_it_pec/i18n/es_AR.po | 6 +- l10n_it_pec/i18n/es_CR.po | 6 +- l10n_it_pec/i18n/es_EC.po | 6 +- l10n_it_pec/i18n/es_MX.po | 6 +- l10n_it_pec/i18n/es_VE.po | 6 +- l10n_it_pec/i18n/et.po | 6 +- l10n_it_pec/i18n/fi.po | 6 +- l10n_it_pec/i18n/fr.po | 6 +- l10n_it_pec/i18n/fr_CA.po | 6 +- l10n_it_pec/i18n/fr_CH.po | 6 +- l10n_it_pec/i18n/gl.po | 6 +- l10n_it_pec/i18n/hr.po | 6 +- l10n_it_pec/i18n/hr_HR.po | 6 +- l10n_it_pec/i18n/hu.po | 6 +- l10n_it_pec/i18n/it.po | 6 +- l10n_it_pec/i18n/ja.po | 6 +- l10n_it_pec/i18n/l10n_it_pec.pot | 8 +- l10n_it_pec/i18n/lt.po | 6 +- l10n_it_pec/i18n/lv.po | 6 +- l10n_it_pec/i18n/mk.po | 6 +- l10n_it_pec/i18n/mn.po | 6 +- l10n_it_pec/i18n/nb.po | 6 +- l10n_it_pec/i18n/nb_NO.po | 6 +- l10n_it_pec/i18n/nl.po | 6 +- l10n_it_pec/i18n/nl_BE.po | 6 +- l10n_it_pec/i18n/pl.po | 6 +- l10n_it_pec/i18n/pt.po | 6 +- l10n_it_pec/i18n/pt_BR.po | 6 +- l10n_it_pec/i18n/pt_PT.po | 6 +- l10n_it_pec/i18n/ro.po | 6 +- l10n_it_pec/i18n/ru.po | 6 +- l10n_it_pec/i18n/sl.po | 6 +- l10n_it_pec/i18n/sr@latin.po | 6 +- l10n_it_pec/i18n/sv.po | 6 +- l10n_it_pec/i18n/th.po | 6 +- l10n_it_pec/i18n/tr.po | 6 +- l10n_it_pec/i18n/vi.po | 6 +- l10n_it_pec/i18n/zh_CN.po | 6 +- l10n_it_pec/i18n/zh_TW.po | 6 +- l10n_it_pec/readme/CONTRIBUTORS.rst | 3 + l10n_it_pec/readme/DESCRIPTION.rst | 7 + l10n_it_pec/static/description/index.html | 424 ++++++++++++++++++++++ l10n_it_pec/views/partner_view.xml | 9 +- 56 files changed, 650 insertions(+), 174 deletions(-) create mode 100644 l10n_it_pec/readme/CONTRIBUTORS.rst create mode 100644 l10n_it_pec/readme/DESCRIPTION.rst create mode 100644 l10n_it_pec/static/description/index.html diff --git a/l10n_it_pec/README.rst b/l10n_it_pec/README.rst index a2a9fc8de8f6..0542ef6a250c 100644 --- a/l10n_it_pec/README.rst +++ b/l10n_it_pec/README.rst @@ -1,44 +1,81 @@ -.. 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 +================================ +Italian Localization - Email PEC +================================ -======== -PEC Mail -======== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fl10n--italy-lightgray.png?logo=github + :target: https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_pec + :alt: OCA/l10n-italy +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/l10n-italy-12-0/l10n-italy-12-0-l10n_it_pec + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/122/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +**Italiano** + +Aggiunge il campo email PEC nel profilo del partner + +**English** Add PEC Mail field in partner profile +**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 smashing it by providing a 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 +~~~~~~~ + +* Odoo Italia Network Contributors ------------- +~~~~~~~~~~~~ * Franco Tampieri * Francesco Apruzzese +* Stefano Consolaro +Maintainers +~~~~~~~~~~~ -Maintainer ----------- +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/l10n-italy `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 98a2affbd424..4b50c0c40421 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -1,14 +1,16 @@ # Copyright 2014 Associazione Odoo Italia () +# Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - 'name': 'Pec Mail', - 'version': '11.0.1.0.0', + 'name': 'Italian Localization - Email PEC', + 'version': '12.0.1.0.0', 'category': 'Localization/Italy', + 'summary': 'Aggiunge il campo email PEC al partner', 'author': "Odoo Italia Network,Odoo Community Association (OCA)", - 'website': 'https://odoo-community.org/', + 'website': 'https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_pec', 'license': 'AGPL-3', - 'depends': ['base'], + 'depends': ['mail'], 'data': [ 'views/partner_view.xml', ], diff --git a/l10n_it_pec/i18n/am.po b/l10n_it_pec/i18n/am.po index fbc51b9901dd..92bf533d4ab1 100644 --- a/l10n_it_pec/i18n/am.po +++ b/l10n_it_pec/i18n/am.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/ar.po b/l10n_it_pec/i18n/ar.po index 6f7890261811..0a2672ce3b6a 100644 --- a/l10n_it_pec/i18n/ar.po +++ b/l10n_it_pec/i18n/ar.po @@ -20,7 +20,7 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/bg.po b/l10n_it_pec/i18n/bg.po index eb2a95d4f9a7..567c4d603728 100644 --- a/l10n_it_pec/i18n/bg.po +++ b/l10n_it_pec/i18n/bg.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/bs.po b/l10n_it_pec/i18n/bs.po index 30f0638e4fcb..7405cf72024f 100644 --- a/l10n_it_pec/i18n/bs.po +++ b/l10n_it_pec/i18n/bs.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/ca.po b/l10n_it_pec/i18n/ca.po index 266124e82395..d5e5b0ee605b 100644 --- a/l10n_it_pec/i18n/ca.po +++ b/l10n_it_pec/i18n/ca.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/cs.po b/l10n_it_pec/i18n/cs.po index b8eea01aafed..3d2bded570be 100644 --- a/l10n_it_pec/i18n/cs.po +++ b/l10n_it_pec/i18n/cs.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/da.po b/l10n_it_pec/i18n/da.po index def0d3f0d822..328a1d6c89c8 100644 --- a/l10n_it_pec/i18n/da.po +++ b/l10n_it_pec/i18n/da.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/de.po b/l10n_it_pec/i18n/de.po index aa9e64521732..d32e72c8351a 100644 --- a/l10n_it_pec/i18n/de.po +++ b/l10n_it_pec/i18n/de.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/el_GR.po b/l10n_it_pec/i18n/el_GR.po index 8abdc95786f4..9900a10ef238 100644 --- a/l10n_it_pec/i18n/el_GR.po +++ b/l10n_it_pec/i18n/el_GR.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/en_GB.po b/l10n_it_pec/i18n/en_GB.po index 37dee4e36042..e7452b508d3e 100644 --- a/l10n_it_pec/i18n/en_GB.po +++ b/l10n_it_pec/i18n/en_GB.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es.po b/l10n_it_pec/i18n/es.po index a458abf6d192..a9d50f5e7b68 100644 --- a/l10n_it_pec/i18n/es.po +++ b/l10n_it_pec/i18n/es.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es_AR.po b/l10n_it_pec/i18n/es_AR.po index 58f0f23711da..445db834a3ba 100644 --- a/l10n_it_pec/i18n/es_AR.po +++ b/l10n_it_pec/i18n/es_AR.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es_CR.po b/l10n_it_pec/i18n/es_CR.po index 60e5a99600e5..dcf7291fbfa7 100644 --- a/l10n_it_pec/i18n/es_CR.po +++ b/l10n_it_pec/i18n/es_CR.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es_EC.po b/l10n_it_pec/i18n/es_EC.po index 231f4d2ac736..78d1bc1c7366 100644 --- a/l10n_it_pec/i18n/es_EC.po +++ b/l10n_it_pec/i18n/es_EC.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es_MX.po b/l10n_it_pec/i18n/es_MX.po index 1b2df233086a..acb09cced195 100644 --- a/l10n_it_pec/i18n/es_MX.po +++ b/l10n_it_pec/i18n/es_MX.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/es_VE.po b/l10n_it_pec/i18n/es_VE.po index 58ff8df26aa3..cc380478a95f 100644 --- a/l10n_it_pec/i18n/es_VE.po +++ b/l10n_it_pec/i18n/es_VE.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/et.po b/l10n_it_pec/i18n/et.po index 25bef45631d8..437369c519c4 100644 --- a/l10n_it_pec/i18n/et.po +++ b/l10n_it_pec/i18n/et.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/fi.po b/l10n_it_pec/i18n/fi.po index c6ac3c197b72..d76e31a2563f 100644 --- a/l10n_it_pec/i18n/fi.po +++ b/l10n_it_pec/i18n/fi.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/fr.po b/l10n_it_pec/i18n/fr.po index d260d88f8352..0c965b342518 100644 --- a/l10n_it_pec/i18n/fr.po +++ b/l10n_it_pec/i18n/fr.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/fr_CA.po b/l10n_it_pec/i18n/fr_CA.po index c17b8cc17b44..17cf1bffaf07 100644 --- a/l10n_it_pec/i18n/fr_CA.po +++ b/l10n_it_pec/i18n/fr_CA.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/fr_CH.po b/l10n_it_pec/i18n/fr_CH.po index fe06e222e44d..f09008ea4ec1 100644 --- a/l10n_it_pec/i18n/fr_CH.po +++ b/l10n_it_pec/i18n/fr_CH.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/gl.po b/l10n_it_pec/i18n/gl.po index b58f8355e3a4..112402a07fbb 100644 --- a/l10n_it_pec/i18n/gl.po +++ b/l10n_it_pec/i18n/gl.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/hr.po b/l10n_it_pec/i18n/hr.po index 3534f73731e5..42891c9658c5 100644 --- a/l10n_it_pec/i18n/hr.po +++ b/l10n_it_pec/i18n/hr.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/hr_HR.po b/l10n_it_pec/i18n/hr_HR.po index bd33ef94bff8..3d6d081e3b49 100644 --- a/l10n_it_pec/i18n/hr_HR.po +++ b/l10n_it_pec/i18n/hr_HR.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/hu.po b/l10n_it_pec/i18n/hu.po index bcc620da1bec..05ff525a5cdb 100644 --- a/l10n_it_pec/i18n/hu.po +++ b/l10n_it_pec/i18n/hu.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po index b806a26a1f0e..d51be7b09cbf 100644 --- a/l10n_it_pec/i18n/it.po +++ b/l10n_it_pec/i18n/it.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr " (PEC)" @@ -30,7 +30,7 @@ msgid "Contact" msgstr "Contatto" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "Email PEC" diff --git a/l10n_it_pec/i18n/ja.po b/l10n_it_pec/i18n/ja.po index 87354cad9406..3f81c5951b76 100644 --- a/l10n_it_pec/i18n/ja.po +++ b/l10n_it_pec/i18n/ja.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/l10n_it_pec.pot b/l10n_it_pec/i18n/l10n_it_pec.pot index 5565d84cff74..e73e817f9700 100644 --- a/l10n_it_pec/i18n/l10n_it_pec.pot +++ b/l10n_it_pec/i18n/l10n_it_pec.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" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: \n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -24,8 +24,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/lt.po b/l10n_it_pec/i18n/lt.po index 338d96f15d41..51ca5e366192 100644 --- a/l10n_it_pec/i18n/lt.po +++ b/l10n_it_pec/i18n/lt.po @@ -20,7 +20,7 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/lv.po b/l10n_it_pec/i18n/lv.po index 84723ff37f92..fe4ce57f4d10 100644 --- a/l10n_it_pec/i18n/lv.po +++ b/l10n_it_pec/i18n/lv.po @@ -20,7 +20,7 @@ msgstr "" "2);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/mk.po b/l10n_it_pec/i18n/mk.po index eecd51b4f0e2..04b829737fa1 100644 --- a/l10n_it_pec/i18n/mk.po +++ b/l10n_it_pec/i18n/mk.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/mn.po b/l10n_it_pec/i18n/mn.po index c37dd73b84d9..31a401e85f9a 100644 --- a/l10n_it_pec/i18n/mn.po +++ b/l10n_it_pec/i18n/mn.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/nb.po b/l10n_it_pec/i18n/nb.po index 9d1cdda4f7dd..2388bb82ea7e 100644 --- a/l10n_it_pec/i18n/nb.po +++ b/l10n_it_pec/i18n/nb.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/nb_NO.po b/l10n_it_pec/i18n/nb_NO.po index d7865b5489c1..7cab7e288f39 100644 --- a/l10n_it_pec/i18n/nb_NO.po +++ b/l10n_it_pec/i18n/nb_NO.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/nl.po b/l10n_it_pec/i18n/nl.po index 23d4535d9751..ae3e56348765 100644 --- a/l10n_it_pec/i18n/nl.po +++ b/l10n_it_pec/i18n/nl.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/nl_BE.po b/l10n_it_pec/i18n/nl_BE.po index 174200d28fcc..df65f8c824cc 100644 --- a/l10n_it_pec/i18n/nl_BE.po +++ b/l10n_it_pec/i18n/nl_BE.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/pl.po b/l10n_it_pec/i18n/pl.po index ca0cfacda882..bb6ecf791687 100644 --- a/l10n_it_pec/i18n/pl.po +++ b/l10n_it_pec/i18n/pl.po @@ -21,7 +21,7 @@ msgstr "" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -31,8 +31,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/pt.po b/l10n_it_pec/i18n/pt.po index 4e2e7285e344..1ad41b5ef769 100644 --- a/l10n_it_pec/i18n/pt.po +++ b/l10n_it_pec/i18n/pt.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/pt_BR.po b/l10n_it_pec/i18n/pt_BR.po index 0e61b60a614d..68b93ae52aca 100644 --- a/l10n_it_pec/i18n/pt_BR.po +++ b/l10n_it_pec/i18n/pt_BR.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/pt_PT.po b/l10n_it_pec/i18n/pt_PT.po index 8aae550c79b2..b96c558bf441 100644 --- a/l10n_it_pec/i18n/pt_PT.po +++ b/l10n_it_pec/i18n/pt_PT.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/ro.po b/l10n_it_pec/i18n/ro.po index 3908226e4e3e..030cb585af2e 100644 --- a/l10n_it_pec/i18n/ro.po +++ b/l10n_it_pec/i18n/ro.po @@ -20,7 +20,7 @@ msgstr "" "2:1));\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/ru.po b/l10n_it_pec/i18n/ru.po index 63ebf307f331..fd5c7c98a7a0 100644 --- a/l10n_it_pec/i18n/ru.po +++ b/l10n_it_pec/i18n/ru.po @@ -21,7 +21,7 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -31,8 +31,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/sl.po b/l10n_it_pec/i18n/sl.po index ec4b43747637..b5dfe3fff155 100644 --- a/l10n_it_pec/i18n/sl.po +++ b/l10n_it_pec/i18n/sl.po @@ -20,7 +20,7 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,7 +30,7 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "Certificirana e-pošta" diff --git a/l10n_it_pec/i18n/sr@latin.po b/l10n_it_pec/i18n/sr@latin.po index db695ba885dc..778e41a67e6b 100644 --- a/l10n_it_pec/i18n/sr@latin.po +++ b/l10n_it_pec/i18n/sr@latin.po @@ -20,7 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -30,8 +30,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/sv.po b/l10n_it_pec/i18n/sv.po index 4df71ea81838..735a07887d85 100644 --- a/l10n_it_pec/i18n/sv.po +++ b/l10n_it_pec/i18n/sv.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/th.po b/l10n_it_pec/i18n/th.po index 733733cebe8c..6b29c4c91e7a 100644 --- a/l10n_it_pec/i18n/th.po +++ b/l10n_it_pec/i18n/th.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/tr.po b/l10n_it_pec/i18n/tr.po index ff3d620d4901..9bcd4246898d 100644 --- a/l10n_it_pec/i18n/tr.po +++ b/l10n_it_pec/i18n/tr.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/vi.po b/l10n_it_pec/i18n/vi.po index 0d213fd321b0..1a8d9fe5657f 100644 --- a/l10n_it_pec/i18n/vi.po +++ b/l10n_it_pec/i18n/vi.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/zh_CN.po b/l10n_it_pec/i18n/zh_CN.po index d6a466443569..62cc5b7a7a33 100644 --- a/l10n_it_pec/i18n/zh_CN.po +++ b/l10n_it_pec/i18n/zh_CN.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/i18n/zh_TW.po b/l10n_it_pec/i18n/zh_TW.po index 532ff34dcaa0..e6200b813f84 100644 --- a/l10n_it_pec/i18n/zh_TW.po +++ b/l10n_it_pec/i18n/zh_TW.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_it_pec -#: model:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view +#: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view msgid " (PEC)" msgstr "" @@ -29,8 +29,8 @@ msgid "Contact" msgstr "" #. module: l10n_it_pec -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner_pec_mail -#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users_pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" diff --git a/l10n_it_pec/readme/CONTRIBUTORS.rst b/l10n_it_pec/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000000..2cc83d404477 --- /dev/null +++ b/l10n_it_pec/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Franco Tampieri +* Francesco Apruzzese +* Stefano Consolaro \ No newline at end of file diff --git a/l10n_it_pec/readme/DESCRIPTION.rst b/l10n_it_pec/readme/DESCRIPTION.rst new file mode 100644 index 000000000000..c5c40dd4c4a7 --- /dev/null +++ b/l10n_it_pec/readme/DESCRIPTION.rst @@ -0,0 +1,7 @@ +**Italiano** + +Aggiunge il campo email PEC nel profilo del partner + +**English** + +Add PEC Mail field in partner profile diff --git a/l10n_it_pec/static/description/index.html b/l10n_it_pec/static/description/index.html new file mode 100644 index 000000000000..c55303d785fe --- /dev/null +++ b/l10n_it_pec/static/description/index.html @@ -0,0 +1,424 @@ + + + + + + +Italian Localization - Email PEC + + + +
    +

    Italian Localization - Email PEC

    + + +

    Beta License: AGPL-3 OCA/l10n-italy Translate me on Weblate Try me on Runbot

    +

    Italiano

    +

    Aggiunge il campo email PEC nel profilo del partner

    +

    English

    +

    Add PEC Mail field in partner profile

    +

    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

    +
      +
    • Odoo Italia Network
    • +
    +
    +
    +

    Contributors

    + +
    +
    +

    Maintainers

    +

    This module is maintained by the OCA.

    +Odoo Community Association +

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

    +

    This module is part of the OCA/l10n-italy project on GitHub.

    +

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

    +
    +
    +
    + + diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml index 745f86479135..478f8d022157 100644 --- a/l10n_it_pec/views/partner_view.xml +++ b/l10n_it_pec/views/partner_view.xml @@ -3,11 +3,14 @@ res.partner.pec.form res.partner - + - + + - + From c7964fbe6dbc4e4b1ce5fa0112032faf4aec92f5 Mon Sep 17 00:00:00 2001 From: Sergio Zanchetta Date: Mon, 28 Oct 2019 22:49:06 +0000 Subject: [PATCH 17/22] Translated using Weblate (Italian) Currently translated at 100.0% (3 of 3 strings) Translation: l10n-italy-12.0/l10n-italy-12.0-l10n_it_pec Translate-URL: https://translation.odoo-community.org/projects/l10n-italy-12-0/l10n-italy-12-0-l10n_it_pec/it/ --- l10n_it_pec/i18n/it.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/l10n_it_pec/i18n/it.po b/l10n_it_pec/i18n/it.po index d51be7b09cbf..d4c7b5cf5043 100644 --- a/l10n_it_pec/i18n/it.po +++ b/l10n_it_pec/i18n/it.po @@ -10,14 +10,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-12-30 05:35+0000\n" -"PO-Revision-Date: 2017-12-30 05:35+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2019-10-29 01:33+0000\n" +"Last-Translator: Sergio Zanchetta \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.8\n" #. module: l10n_it_pec #: model_terms:ir.ui.view,arch_db:l10n_it_pec.res_partner_kanban_pec_view @@ -33,4 +34,4 @@ msgstr "Contatto" #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" -msgstr "Email PEC" +msgstr "E-mail PEC" From 355f489b21490d4c4b8b2eae7915b78d814cac1e Mon Sep 17 00:00:00 2001 From: Lara Baggio Date: Wed, 13 May 2020 18:03:37 +0200 Subject: [PATCH 18/22] merge PR 1264 1717 1728 1737 1739 --- l10n_it_pec/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 4b50c0c40421..6c8663a7c73f 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Italian Localization - Email PEC', - 'version': '12.0.1.0.0', + 'version': '12.0.1.0.1', 'category': 'Localization/Italy', 'summary': 'Aggiunge il campo email PEC al partner', 'author': "Odoo Italia Network,Odoo Community Association (OCA)", From cc8a0db40769a25c246ae5ab8f33f5c2db15d75a Mon Sep 17 00:00:00 2001 From: Borruso Date: Fri, 5 Mar 2021 15:42:56 +0100 Subject: [PATCH 19/22] [IMP] l10n_it_pec: black, isort, prettier --- l10n_it_pec/__manifest__.py | 22 +++++++++++----------- l10n_it_pec/models/partner.py | 4 ++-- l10n_it_pec/readme/CONTRIBUTORS.rst | 2 +- l10n_it_pec/views/partner_view.xml | 18 ++++++++++-------- 4 files changed, 24 insertions(+), 22 deletions(-) diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 6c8663a7c73f..67bcccc278c5 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -3,16 +3,16 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - 'name': 'Italian Localization - Email PEC', - 'version': '12.0.1.0.1', - 'category': 'Localization/Italy', - 'summary': 'Aggiunge il campo email PEC al partner', - 'author': "Odoo Italia Network,Odoo Community Association (OCA)", - 'website': 'https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_pec', - 'license': 'AGPL-3', - 'depends': ['mail'], - 'data': [ - 'views/partner_view.xml', + "name": "Italian Localization - Email PEC", + "version": "12.0.1.0.1", + "category": "Localization/Italy", + "summary": "Aggiunge il campo email PEC al partner", + "author": "Odoo Italia Network,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/l10n-italy", + "license": "AGPL-3", + "depends": ["mail"], + "data": [ + "views/partner_view.xml", ], - 'installable': True, + "installable": True, } diff --git a/l10n_it_pec/models/partner.py b/l10n_it_pec/models/partner.py index 5c9aff7e2eaa..71caa85baaac 100644 --- a/l10n_it_pec/models/partner.py +++ b/l10n_it_pec/models/partner.py @@ -1,10 +1,10 @@ # Copyright 2014 Associazione Odoo Italia () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from odoo import models, fields +from odoo import fields, models class ResPartner(models.Model): _inherit = "res.partner" - pec_mail = fields.Char(string='PEC Mail') + pec_mail = fields.Char(string="PEC Mail") diff --git a/l10n_it_pec/readme/CONTRIBUTORS.rst b/l10n_it_pec/readme/CONTRIBUTORS.rst index 2cc83d404477..52811b468fdd 100644 --- a/l10n_it_pec/readme/CONTRIBUTORS.rst +++ b/l10n_it_pec/readme/CONTRIBUTORS.rst @@ -1,3 +1,3 @@ * Franco Tampieri * Francesco Apruzzese -* Stefano Consolaro \ No newline at end of file +* Stefano Consolaro diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml index 478f8d022157..bd09e76c4618 100644 --- a/l10n_it_pec/views/partner_view.xml +++ b/l10n_it_pec/views/partner_view.xml @@ -1,15 +1,15 @@ - + res.partner.pec.form res.partner - + - + @@ -17,7 +17,7 @@ res.partner.pec.tree res.partner - + @@ -28,14 +28,16 @@ res.partner.pec.kanban res.partner - + - +
  • - (PEC) + (PEC)
  • From fd6fc3c70dd494d9dc369d00401a27131ee7e7ec Mon Sep 17 00:00:00 2001 From: Borruso Date: Fri, 5 Mar 2021 16:33:21 +0100 Subject: [PATCH 20/22] [MIG] l10n_it_pec: Migration to 14.0 --- l10n_it_pec/README.rst | 16 ++++++++-------- l10n_it_pec/__manifest__.py | 6 +++--- l10n_it_pec/i18n/l10n_it_pec.pot | 22 ++++++++++++++++++---- l10n_it_pec/static/description/index.html | 12 ++++++------ l10n_it_pec/views/partner_view.xml | 3 --- 5 files changed, 35 insertions(+), 24 deletions(-) diff --git a/l10n_it_pec/README.rst b/l10n_it_pec/README.rst index 0542ef6a250c..6abd4a2cbb14 100644 --- a/l10n_it_pec/README.rst +++ b/l10n_it_pec/README.rst @@ -1,6 +1,6 @@ -================================ -Italian Localization - Email PEC -================================ +=============== +ITA - Email PEC +=============== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! @@ -14,13 +14,13 @@ Italian Localization - Email PEC :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github - :target: https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_pec + :target: https://github.com/OCA/l10n-italy/tree/14.0/l10n_it_pec :alt: OCA/l10n-italy .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/l10n-italy-12-0/l10n-italy-12-0-l10n_it_pec + :target: https://translation.odoo-community.org/projects/l10n-italy-14-0/l10n-italy-14-0-l10n_it_pec :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/122/12.0 + :target: https://runbot.odoo-community.org/runbot/122/14.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -44,7 +44,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. @@ -76,6 +76,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/l10n-italy `_ project on GitHub. +This module is part of the `OCA/l10n-italy `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 67bcccc278c5..7ba0fafc3fb8 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -1,10 +1,10 @@ # Copyright 2014 Associazione Odoo Italia () # Copyright 2019 Stefano Consolaro (Associazione PNLUG - Gruppo Odoo) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) { - "name": "Italian Localization - Email PEC", - "version": "12.0.1.0.1", + "name": "ITA - Email PEC", + "version": "14.0.1.0.0", "category": "Localization/Italy", "summary": "Aggiunge il campo email PEC al partner", "author": "Odoo Italia Network,Odoo Community Association (OCA)", diff --git a/l10n_it_pec/i18n/l10n_it_pec.pot b/l10n_it_pec/i18n/l10n_it_pec.pot index e73e817f9700..04dfe2dbbb6b 100644 --- a/l10n_it_pec/i18n/l10n_it_pec.pot +++ b/l10n_it_pec/i18n/l10n_it_pec.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * l10n_it_pec +# * l10n_it_pec # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" +"Project-Id-Version: Odoo Server 14.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" +"Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,9 +23,23 @@ msgstr "" msgid "Contact" msgstr "" +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: l10n_it_pec +#: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + #. module: l10n_it_pec #: model:ir.model.fields,field_description:l10n_it_pec.field_res_partner__pec_mail #: model:ir.model.fields,field_description:l10n_it_pec.field_res_users__pec_mail msgid "PEC Mail" msgstr "" - diff --git a/l10n_it_pec/static/description/index.html b/l10n_it_pec/static/description/index.html index c55303d785fe..2b85ba1d0ae5 100644 --- a/l10n_it_pec/static/description/index.html +++ b/l10n_it_pec/static/description/index.html @@ -4,7 +4,7 @@ -Italian Localization - Email PEC +ITA - Email PEC -
    -

    Italian Localization - Email PEC

    +
    +

    ITA - Email PEC

    -

    Beta License: AGPL-3 OCA/l10n-italy Translate me on Weblate Try me on Runbot

    +

    Beta License: AGPL-3 OCA/l10n-italy Translate me on Weblate Try me on Runbot

    Italiano

    Aggiunge il campo email PEC nel profilo del partner

    English

    @@ -389,7 +389,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,7 +415,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/l10n-italy project on GitHub.

    +

    This module is part of the OCA/l10n-italy project on GitHub.

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

    diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml index bd09e76c4618..95e3cf4dffad 100644 --- a/l10n_it_pec/views/partner_view.xml +++ b/l10n_it_pec/views/partner_view.xml @@ -5,9 +5,6 @@ res.partner - From ad808f2bbc30c1477720fc836ba7dc559cd54cf8 Mon Sep 17 00:00:00 2001 From: tafaRU Date: Thu, 10 Nov 2022 12:36:15 +0100 Subject: [PATCH 21/22] [IMP] l10n_it_pec: pre-commit stuff --- setup/l10n_it_pec/odoo/addons/l10n_it_pec | 1 + setup/l10n_it_pec/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/l10n_it_pec/odoo/addons/l10n_it_pec create mode 100644 setup/l10n_it_pec/setup.py diff --git a/setup/l10n_it_pec/odoo/addons/l10n_it_pec b/setup/l10n_it_pec/odoo/addons/l10n_it_pec new file mode 120000 index 000000000000..82bf46331489 --- /dev/null +++ b/setup/l10n_it_pec/odoo/addons/l10n_it_pec @@ -0,0 +1 @@ +../../../../l10n_it_pec \ No newline at end of file diff --git a/setup/l10n_it_pec/setup.py b/setup/l10n_it_pec/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/l10n_it_pec/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 5484958fe1789ad8a7b5f0e1ca6b3256abbd3c78 Mon Sep 17 00:00:00 2001 From: tafaRU Date: Thu, 10 Nov 2022 12:36:15 +0100 Subject: [PATCH 22/22] [MIG] l10n_it_pec: Migration to 16.0 --- l10n_it_pec/__manifest__.py | 2 +- l10n_it_pec/readme/CONTRIBUTORS.rst | 1 + l10n_it_pec/views/partner_view.xml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/l10n_it_pec/__manifest__.py b/l10n_it_pec/__manifest__.py index 7ba0fafc3fb8..c897318c295a 100644 --- a/l10n_it_pec/__manifest__.py +++ b/l10n_it_pec/__manifest__.py @@ -4,7 +4,7 @@ { "name": "ITA - Email PEC", - "version": "14.0.1.0.0", + "version": "16.0.1.0.0", "category": "Localization/Italy", "summary": "Aggiunge il campo email PEC al partner", "author": "Odoo Italia Network,Odoo Community Association (OCA)", diff --git a/l10n_it_pec/readme/CONTRIBUTORS.rst b/l10n_it_pec/readme/CONTRIBUTORS.rst index 52811b468fdd..8c2d507377e4 100644 --- a/l10n_it_pec/readme/CONTRIBUTORS.rst +++ b/l10n_it_pec/readme/CONTRIBUTORS.rst @@ -1,3 +1,4 @@ * Franco Tampieri * Francesco Apruzzese * Stefano Consolaro +* Alex Comba diff --git a/l10n_it_pec/views/partner_view.xml b/l10n_it_pec/views/partner_view.xml index 95e3cf4dffad..3ef6388b1dc5 100644 --- a/l10n_it_pec/views/partner_view.xml +++ b/l10n_it_pec/views/partner_view.xml @@ -30,7 +30,7 @@ - +