From edbda2c2b315c22579cc3e3a2eaf07942a72a4f8 Mon Sep 17 00:00:00 2001 From: Endika Iglesias Date: Mon, 8 Jun 2015 10:25:00 +0200 Subject: [PATCH 01/21] [ADD] new addon crm_location --- crm_location/README.rst | 49 ++++++++++++++++++++ crm_location/__init__.py | 25 +++++++++++ crm_location/__openerp__.py | 39 ++++++++++++++++ crm_location/models/__init__.py | 25 +++++++++++ crm_location/models/crm_lead.py | 55 +++++++++++++++++++++++ crm_location/static/description/icon.png | Bin 0 -> 19578 bytes crm_location/views/crm_lead_view.xml | 35 +++++++++++++++ 7 files changed, 228 insertions(+) create mode 100644 crm_location/README.rst create mode 100644 crm_location/__init__.py create mode 100644 crm_location/__openerp__.py create mode 100644 crm_location/models/__init__.py create mode 100644 crm_location/models/crm_lead.py create mode 100644 crm_location/static/description/icon.png create mode 100644 crm_location/views/crm_lead_view.xml diff --git a/crm_location/README.rst b/crm_location/README.rst new file mode 100644 index 00000000000..9a1cde943d3 --- /dev/null +++ b/crm_location/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +CRM location +============ + +This module introduces a better zip. + +It enables zip, city, state and country auto-completion on lead. + + +Installation +============ + +To install this module, you need: + +* crm +* base_location located in OCA/partner-contact repo + + +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 +`here `_. + + +Contributors +------------ +* Endika Iglesias +* Rafael Blasco + + +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 http://odoo-community.org. \ No newline at end of file diff --git a/crm_location/__init__.py b/crm_location/__init__.py new file mode 100644 index 00000000000..b5c82df182c --- /dev/null +++ b/crm_location/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright : +# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) +# Endika Iglesias +# +# 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 models diff --git a/crm_location/__openerp__.py b/crm_location/__openerp__.py new file mode 100644 index 00000000000..08623b2f391 --- /dev/null +++ b/crm_location/__openerp__.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright : +# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) +# Endika Iglesias +# +# 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': 'CRM location', + 'category': 'Customer Relationship Management', + 'version': '8.0.1.0.0', + 'depends': [ + 'crm', + 'base_location', + ], + 'data': ['views/crm_lead_view.xml'], + 'author': 'Antiun Ingeniería S.L., ' + 'Odoo Community Association (OCA)', + 'website': 'http://www.antiun.com', + 'license': 'AGPL-3', + 'installable': True, +} diff --git a/crm_location/models/__init__.py b/crm_location/models/__init__.py new file mode 100644 index 00000000000..04bcd2f1eb0 --- /dev/null +++ b/crm_location/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright : +# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) +# Endika Iglesias +# +# 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 crm_lead diff --git a/crm_location/models/crm_lead.py b/crm_location/models/crm_lead.py new file mode 100644 index 00000000000..d69afbf126f --- /dev/null +++ b/crm_location/models/crm_lead.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright : +# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) +# Endika Iglesias +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, fields, api + + +class CrmLead(models.Model): + _inherit = 'crm.lead' + + @api.one + @api.onchange('location_id') + def on_change_city(self): + if self.location_id: + self.zip = self.location_id.name + self.city = self.location_id.city + self.state_id = self.location_id.state_id + self.country_id = self.location_id.country_id + + location_id = fields.Many2one( + 'res.better.zip', + string='Location', + index=True, + help='Use the city name or the zip code to search the location', + ) + + @api.multi + def on_change_partner_id(self, partner_id): + res = super(CrmLead, self).on_change_partner_id(partner_id) + if 'value' not in res: + res['value'] = {} + if partner_id: + partner = self.env['res.partner'].browse(partner_id) + res['value']['location_id'] = partner.zip_id.id + return {'value': res['value']} diff --git a/crm_location/static/description/icon.png b/crm_location/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96d1b1e768772015f8c423bd150d7a7b9f3f2952 GIT binary patch literal 19578 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
BhZlZCC3VB_LW;qA&_Y8 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 literal 0 HcmV?d00001 diff --git a/crm_location/views/crm_lead_view.xml b/crm_location/views/crm_lead_view.xml new file mode 100644 index 00000000000..172609da0a7 --- /dev/null +++ b/crm_location/views/crm_lead_view.xml @@ -0,0 +1,35 @@ + + + + + + crm.location.form.city + crm.lead + + + + + + + + + + crm.location.form.city + crm.lead + + + + + + + + + + + From c2b556f0067c1ca239f74a774e6b20ed753d30c1 Mon Sep 17 00:00:00 2001 From: Antonio Espinosa Date: Wed, 1 Jul 2015 13:22:32 +0200 Subject: [PATCH 02/21] [FIX] Rename crm_case inherited views --- crm_location/views/crm_lead_view.xml | 59 ++++++++++++++-------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/crm_location/views/crm_lead_view.xml b/crm_location/views/crm_lead_view.xml index 172609da0a7..31fc9c0d9d2 100644 --- a/crm_location/views/crm_lead_view.xml +++ b/crm_location/views/crm_lead_view.xml @@ -1,35 +1,34 @@ - + - + - - crm.location.form.city - crm.lead - - - - - - - + + Add city completion helper field + crm.lead + + + + + + + - - crm.location.form.city - crm.lead - - - - - - - + + Add city completion helper field + crm.lead + + + + + + + - - + From dab7bef1cd3b0b8f938f5132645bbbf8e0450476 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 12 Mar 2016 04:04:15 -0500 Subject: [PATCH 03/21] OCA Transbot updated translations from Transifex --- crm_location/i18n/bg.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/ca.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/de.po | 40 +++++++++++++++++++++++++++++++++++++ crm_location/i18n/es.po | 40 +++++++++++++++++++++++++++++++++++++ crm_location/i18n/es_ES.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/fi.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/fr.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/hr.po | 40 +++++++++++++++++++++++++++++++++++++ crm_location/i18n/it.po | 41 ++++++++++++++++++++++++++++++++++++++ crm_location/i18n/pt_BR.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/sk.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/sl.po | 40 +++++++++++++++++++++++++++++++++++++ crm_location/i18n/tr_TR.po | 39 ++++++++++++++++++++++++++++++++++++ crm_location/i18n/zh_CN.po | 39 ++++++++++++++++++++++++++++++++++++ 14 files changed, 552 insertions(+) create mode 100644 crm_location/i18n/bg.po create mode 100644 crm_location/i18n/ca.po create mode 100644 crm_location/i18n/de.po create mode 100644 crm_location/i18n/es.po create mode 100644 crm_location/i18n/es_ES.po create mode 100644 crm_location/i18n/fi.po create mode 100644 crm_location/i18n/fr.po create mode 100644 crm_location/i18n/hr.po create mode 100644 crm_location/i18n/it.po create mode 100644 crm_location/i18n/pt_BR.po create mode 100644 crm_location/i18n/sk.po create mode 100644 crm_location/i18n/sl.po create mode 100644 crm_location/i18n/tr_TR.po create mode 100644 crm_location/i18n/zh_CN.po diff --git a/crm_location/i18n/bg.po b/crm_location/i18n/bg.po new file mode 100644 index 00000000000..9cea7f4ebce --- /dev/null +++ b/crm_location/i18n/bg.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-02 14:15+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Следа/Възможност" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/ca.po b/crm_location/i18n/ca.po new file mode 100644 index 00000000000..812d22ba804 --- /dev/null +++ b/crm_location/i18n/ca.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 02:26+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Ubicació " + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/de.po b/crm_location/i18n/de.po new file mode 100644 index 00000000000..e3eb4e94786 --- /dev/null +++ b/crm_location/i18n/de.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 02:26+0000\n" +"PO-Revision-Date: 2017-04-12 12:05+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "Stadtvervollständigung" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Chance" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Standort" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Verwenden Sie Ort oder PLZ, um den Standort festzulegen" diff --git a/crm_location/i18n/es.po b/crm_location/i18n/es.po new file mode 100644 index 00000000000..4dfd7041b30 --- /dev/null +++ b/crm_location/i18n/es.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-14 03:55+0000\n" +"PO-Revision-Date: 2016-04-07 15:47+0000\n" +"Last-Translator: Carles Antoli \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-crm-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "Autocompletado a partir de la ciudad" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciativa/Oportunidad" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Ubicación" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Utilice el nombre de la ciudad o el código postal para buscar la ubicación" diff --git a/crm_location/i18n/es_ES.po b/crm_location/i18n/es_ES.po new file mode 100644 index 00000000000..1753f652ddf --- /dev/null +++ b/crm_location/i18n/es_ES.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-13 09:09+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-crm-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Ubicación" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/fi.po b/crm_location/i18n/fi.po new file mode 100644 index 00000000000..d4e86358218 --- /dev/null +++ b/crm_location/i18n/fi.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-17 01:26+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Sijainti" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/fr.po b/crm_location/i18n/fr.po new file mode 100644 index 00000000000..147168e4969 --- /dev/null +++ b/crm_location/i18n/fr.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-02 14:15+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Piste/Opportunité" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Emplacement" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/hr.po b/crm_location/i18n/hr.po new file mode 100644 index 00000000000..4b9755667e2 --- /dev/null +++ b/crm_location/i18n/hr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Ana-Maria Olujić , 2016 +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-15 00:49+0000\n" +"PO-Revision-Date: 2016-08-19 13:47+0000\n" +"Last-Translator: Ana-Maria Olujić \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "Završetak grada" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potencijalni klijent" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Lokacija" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Upište ime grada ili poštanski broj kako biste pretražili lokaciju." diff --git a/crm_location/i18n/it.po b/crm_location/i18n/it.po new file mode 100644 index 00000000000..aa676e98a9e --- /dev/null +++ b/crm_location/i18n/it.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Paolo Valier, 2016 +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 02:20+0000\n" +"PO-Revision-Date: 2017-01-14 17:50+0000\n" +"Last-Translator: Paolo Valier\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-crm-8-0/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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "Completamento Città" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Opportunità" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Posizione" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/pt_BR.po b/crm_location/i18n/pt_BR.po new file mode 100644 index 00000000000..6a310a8b1e7 --- /dev/null +++ b/crm_location/i18n/pt_BR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-17 01:26+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospector/Oportunidade" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Location" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/sk.po b/crm_location/i18n/sk.po new file mode 100644 index 00000000000..42782e27309 --- /dev/null +++ b/crm_location/i18n/sk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-17 01:26+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-crm-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciatíva/Príležitosť" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/sl.po b/crm_location/i18n/sl.po new file mode 100644 index 00000000000..02a80e84f4f --- /dev/null +++ b/crm_location/i18n/sl.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-10 18:52+0000\n" +"PO-Revision-Date: 2016-03-11 10:37+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-crm-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "Dokončevanje kraja" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Indic/priložnost" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Lokacija" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "Uporabi ime kraja ali poštno številko za iskanje lokacije" diff --git a/crm_location/i18n/tr_TR.po b/crm_location/i18n/tr_TR.po new file mode 100644 index 00000000000..a1c5baf7aa3 --- /dev/null +++ b/crm_location/i18n/tr_TR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 02:41+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-crm-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "Konum" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/zh_CN.po b/crm_location/i18n/zh_CN.po new file mode 100644 index 00000000000..dd095ecf78a --- /dev/null +++ b/crm_location/i18n/zh_CN.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: crm (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 01:51+0000\n" +"PO-Revision-Date: 2016-03-10 18:53+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-crm-8-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: crm_location +#: view:crm.lead:crm_location.crm_case_form_view_leads +#: view:crm.lead:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "线索/商机" + +#. module: crm_location +#: field:crm.lead,location_id:0 +msgid "Location" +msgstr "" + +#. module: crm_location +#: help:crm.lead,location_id:0 +msgid "Use the city name or the zip code to search the location" +msgstr "" From efcd64d1fc1efcd31dce7d2722154ce9a51041eb Mon Sep 17 00:00:00 2001 From: "Luis M. Ontalba" Date: Thu, 8 Jun 2017 09:13:10 +0200 Subject: [PATCH 04/21] [MIG] crm_location: Migrated to 10.0 --- crm_location/README.rst | 21 ++++++---- crm_location/__init__.py | 23 +---------- crm_location/__manifest__.py | 20 ++++++++++ crm_location/__openerp__.py | 39 ------------------- crm_location/models/__init__.py | 23 +---------- crm_location/models/crm_lead.py | 42 +++++--------------- crm_location/tests/__init__.py | 4 ++ crm_location/tests/test_crm_location.py | 52 +++++++++++++++++++++++++ crm_location/views/crm_lead_view.xml | 6 +-- 9 files changed, 103 insertions(+), 127 deletions(-) create mode 100644 crm_location/__manifest__.py delete mode 100644 crm_location/__openerp__.py create mode 100644 crm_location/tests/__init__.py create mode 100644 crm_location/tests/test_crm_location.py diff --git a/crm_location/README.rst b/crm_location/README.rst index 9a1cde943d3..21f9cea14bc 100644 --- a/crm_location/README.rst +++ b/crm_location/README.rst @@ -17,21 +17,28 @@ To install this module, you need: * crm * base_location located in OCA/partner-contact repo +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/111/10.0 + 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 -`here `_. +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. Contributors ------------ * Endika Iglesias -* Rafael Blasco - +* Rafael Blasco +* Luis M. Ontalba Maintainer ---------- @@ -46,4 +53,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 http://odoo-community.org. \ No newline at end of file +To contribute to this module, please visit https://odoo-community.org. diff --git a/crm_location/__init__.py b/crm_location/__init__.py index b5c82df182c..4d8ae82d6d7 100644 --- a/crm_location/__init__.py +++ b/crm_location/__init__.py @@ -1,25 +1,4 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright : -# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) -# Endika Iglesias -# -# 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 . -# -############################################################################## +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/crm_location/__manifest__.py b/crm_location/__manifest__.py new file mode 100644 index 00000000000..736f39d5019 --- /dev/null +++ b/crm_location/__manifest__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Antiun Ingenieria - Endika Iglesias +# Copyright 2017 Tecnativa - Luis Martínez +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + 'name': 'CRM location', + 'category': 'Customer Relationship Management', + 'version': '10.0.1.0.0', + 'depends': [ + 'crm', + 'base_location', + ], + 'data': ['views/crm_lead_view.xml'], + 'author': 'Tecnativa, ' + 'Odoo Community Association (OCA)', + 'website': 'https://www.tecnativa.com', + 'license': 'AGPL-3', + 'installable': True, +} diff --git a/crm_location/__openerp__.py b/crm_location/__openerp__.py deleted file mode 100644 index 08623b2f391..00000000000 --- a/crm_location/__openerp__.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright : -# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) -# Endika Iglesias -# -# 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': 'CRM location', - 'category': 'Customer Relationship Management', - 'version': '8.0.1.0.0', - 'depends': [ - 'crm', - 'base_location', - ], - 'data': ['views/crm_lead_view.xml'], - 'author': 'Antiun Ingeniería S.L., ' - 'Odoo Community Association (OCA)', - 'website': 'http://www.antiun.com', - 'license': 'AGPL-3', - 'installable': True, -} diff --git a/crm_location/models/__init__.py b/crm_location/models/__init__.py index 04bcd2f1eb0..a2258dbb77f 100644 --- a/crm_location/models/__init__.py +++ b/crm_location/models/__init__.py @@ -1,25 +1,4 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright : -# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) -# Endika Iglesias -# -# 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 . -# -############################################################################## +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import crm_lead diff --git a/crm_location/models/crm_lead.py b/crm_location/models/crm_lead.py index d69afbf126f..b976591fb89 100644 --- a/crm_location/models/crm_lead.py +++ b/crm_location/models/crm_lead.py @@ -1,34 +1,15 @@ # -*- coding: utf-8 -*- -# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright : -# (c) 2015 Antiun Ingenieria, SL (Madrid, Spain, http://www.antiun.com) -# Endika Iglesias -# -# 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 . -# -############################################################################## +# Copyright 2015 Antiun Ingenieria - Endika Iglesias +# Copyright 2017 Tecnativa - Luis Martínez +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from openerp import models, fields, api +from odoo import api, fields, models class CrmLead(models.Model): _inherit = 'crm.lead' - @api.one + @api.multi @api.onchange('location_id') def on_change_city(self): if self.location_id: @@ -44,12 +25,7 @@ def on_change_city(self): help='Use the city name or the zip code to search the location', ) - @api.multi - def on_change_partner_id(self, partner_id): - res = super(CrmLead, self).on_change_partner_id(partner_id) - if 'value' not in res: - res['value'] = {} - if partner_id: - partner = self.env['res.partner'].browse(partner_id) - res['value']['location_id'] = partner.zip_id.id - return {'value': res['value']} + @api.onchange('partner_id') + def onchange_partner_id_crm_location(self): + if self.partner_id: + self.location_id = self.partner_id.zip_id.id diff --git a/crm_location/tests/__init__.py b/crm_location/tests/__init__.py new file mode 100644 index 00000000000..d1c4c63b7ac --- /dev/null +++ b/crm_location/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 + +from . import test_crm_location diff --git a/crm_location/tests/test_crm_location.py b/crm_location/tests/test_crm_location.py new file mode 100644 index 00000000000..45622cbcc15 --- /dev/null +++ b/crm_location/tests/test_crm_location.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - Luis M. Ontalba +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 + +from odoo.tests import common + + +class TestCrmLocation(common.SavepointCase): + + @classmethod + def setUpClass(cls): + super(TestCrmLocation, cls).setUpClass() + cls.country = cls.env['res.country'].create({ + 'name': 'Country test', + }) + cls.state = cls.env['res.country.state'].create({ + 'name': 'Test state', + 'code': 'Test state code', + 'country_id': cls.country.id, + }) + cls.location = cls.env['res.better.zip'].create({ + 'name': '12345', + 'city': 'Test city', + 'country_id': cls.country.id, + 'code': 'Test code', + 'state_id': cls.state.id, + }) + cls.lead = cls.env['crm.lead'].create({ + 'name': 'Test lead', + }) + cls.partner = cls.env['res.partner'].create({ + 'name': 'Test partner name', + }) + + def test_on_change_city(self): + lead = self.lead + location = self.location + lead.location_id = location.id + lead.on_change_city() + self.assertEqual(lead.zip, location.name) + self.assertEqual(lead.city, location.city) + self.assertEqual(lead.state_id, location.state_id) + self.assertEqual(lead.country_id, location.country_id) + + def test_onchange_partner_id_crm_location(self): + lead = self.lead + partner = self.partner + location = self.location + partner.zip_id = location.id + lead.partner_id = partner.id + lead.onchange_partner_id_crm_location() + self.assertEqual(lead.location_id, partner.zip_id) diff --git a/crm_location/views/crm_lead_view.xml b/crm_location/views/crm_lead_view.xml index 31fc9c0d9d2..f6c233e4094 100644 --- a/crm_location/views/crm_lead_view.xml +++ b/crm_location/views/crm_lead_view.xml @@ -1,6 +1,5 @@ - - + Add city completion helper field @@ -30,5 +29,4 @@ - - + From b9be9b29968a9621f31540f6329634e281e2e087 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 24 Jun 2017 03:16:52 +0200 Subject: [PATCH 05/21] OCA Transbot updated translations from Transifex --- crm_location/i18n/ca.po | 19 +++++++++--------- crm_location/i18n/de.po | 20 +++++++++---------- crm_location/i18n/es.po | 23 +++++++++++----------- crm_location/i18n/es_ES.po | 19 +++++++++--------- crm_location/i18n/fi.po | 19 +++++++++--------- crm_location/i18n/fr.po | 19 +++++++++--------- crm_location/i18n/hr.po | 20 +++++++++---------- crm_location/i18n/it.po | 21 ++++++++++---------- crm_location/i18n/nl_NL.po | 40 ++++++++++++++++++++++++++++++++++++++ crm_location/i18n/pt_BR.po | 19 +++++++++--------- crm_location/i18n/sl.po | 20 +++++++++---------- crm_location/i18n/tr.po | 40 ++++++++++++++++++++++++++++++++++++++ crm_location/i18n/tr_TR.po | 19 +++++++++--------- 13 files changed, 192 insertions(+), 106 deletions(-) create mode 100644 crm_location/i18n/nl_NL.po create mode 100644 crm_location/i18n/tr.po diff --git a/crm_location/i18n/ca.po b/crm_location/i18n/ca.po index 812d22ba804..f5d55bf799e 100644 --- a/crm_location/i18n/ca.po +++ b/crm_location/i18n/ca.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-28 02:26+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: Catalan (http://www.transifex.com/oca/OCA-crm-8-0/language/ca/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Ubicació " #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/de.po b/crm_location/i18n/de.po index e3eb4e94786..494bc47ceac 100644 --- a/crm_location/i18n/de.po +++ b/crm_location/i18n/de.po @@ -3,15 +3,15 @@ # * crm_location # # Translators: -# Rudolf Schnapka , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-28 02:26+0000\n" -"PO-Revision-Date: 2017-04-12 12:05+0000\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-crm-8-0/language/de/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Stadtvervollständigung" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Lead/Chance" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Standort" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "Verwenden Sie Ort oder PLZ, um den Standort festzulegen" diff --git a/crm_location/i18n/es.po b/crm_location/i18n/es.po index 4dfd7041b30..4eafee88628 100644 --- a/crm_location/i18n/es.po +++ b/crm_location/i18n/es.po @@ -3,15 +3,15 @@ # * crm_location # # Translators: -# Carles Antoli , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 03:55+0000\n" -"PO-Revision-Date: 2016-04-07 15:47+0000\n" -"Last-Translator: Carles Antoli \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-crm-8-0/language/es/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Autocompletado a partir de la ciudad" @@ -30,11 +30,12 @@ msgid "Lead/Opportunity" msgstr "Iniciativa/Oportunidad" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Ubicación" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" -msgstr "Utilice el nombre de la ciudad o el código postal para buscar la ubicación" +msgstr "" +"Utilice el nombre de la ciudad o el código postal para buscar la ubicación" diff --git a/crm_location/i18n/es_ES.po b/crm_location/i18n/es_ES.po index 1753f652ddf..2da5d9eafad 100644 --- a/crm_location/i18n/es_ES.po +++ b/crm_location/i18n/es_ES.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-13 09:09+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-crm-8-0/language/es_ES/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Ubicación" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/fi.po b/crm_location/i18n/fi.po index d4e86358218..8feb18f007c 100644 --- a/crm_location/i18n/fi.po +++ b/crm_location/i18n/fi.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-17 01:26+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-crm-8-0/language/fi/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Sijainti" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/fr.po b/crm_location/i18n/fr.po index 147168e4969..4f7f2ed5c1c 100644 --- a/crm_location/i18n/fr.po +++ b/crm_location/i18n/fr.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-02 14:15+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: French (http://www.transifex.com/oca/OCA-crm-8-0/language/fr/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Piste/Opportunité" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Emplacement" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/hr.po b/crm_location/i18n/hr.po index 4b9755667e2..8b962a55e51 100644 --- a/crm_location/i18n/hr.po +++ b/crm_location/i18n/hr.po @@ -3,15 +3,15 @@ # * crm_location # # Translators: -# Ana-Maria Olujić , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-15 00:49+0000\n" -"PO-Revision-Date: 2016-08-19 13:47+0000\n" -"Last-Translator: Ana-Maria Olujić \n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-crm-8-0/language/hr/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Završetak grada" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Potencijalni klijent" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Lokacija" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "Upište ime grada ili poštanski broj kako biste pretražili lokaciju." diff --git a/crm_location/i18n/it.po b/crm_location/i18n/it.po index aa676e98a9e..70024ab7097 100644 --- a/crm_location/i18n/it.po +++ b/crm_location/i18n/it.po @@ -3,16 +3,15 @@ # * crm_location # # Translators: -# Paolo Valier, 2016 -# Paolo Valier, 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-14 02:20+0000\n" -"PO-Revision-Date: 2017-01-14 17:50+0000\n" -"Last-Translator: Paolo Valier\n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-crm-8-0/language/it/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Completamento Città" @@ -31,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Lead/Opportunità" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Posizione" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/nl_NL.po b/crm_location/i18n/nl_NL.po new file mode 100644 index 00000000000..668d766736b --- /dev/null +++ b/crm_location/i18n/nl_NL.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-24 01:39+0000\n" +"PO-Revision-Date: 2017-06-24 01:39+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_location +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +msgid "Location" +msgstr "Locatie" + +#. module: crm_location +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +msgid "Use the city name or the zip code to search the location" +msgstr "Gebruik de plaatsnaam of de postcode om de locatie te vinden" diff --git a/crm_location/i18n/pt_BR.po b/crm_location/i18n/pt_BR.po index 6a310a8b1e7..09cc72240f6 100644 --- a/crm_location/i18n/pt_BR.po +++ b/crm_location/i18n/pt_BR.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-17 01:26+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-crm-8-0/language/pt_BR/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Prospector/Oportunidade" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Location" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/sl.po b/crm_location/i18n/sl.po index 02a80e84f4f..673218f7829 100644 --- a/crm_location/i18n/sl.po +++ b/crm_location/i18n/sl.po @@ -3,15 +3,15 @@ # * crm_location # # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-10 18:52+0000\n" -"PO-Revision-Date: 2016-03-11 10:37+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-crm-8-0/language/sl/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Dokončevanje kraja" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Indic/priložnost" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Lokacija" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "Uporabi ime kraja ali poštno številko za iskanje lokacije" diff --git a/crm_location/i18n/tr.po b/crm_location/i18n/tr.po new file mode 100644 index 00000000000..98e2d15ac02 --- /dev/null +++ b/crm_location/i18n/tr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +# Translators: +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_location +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Aday/Fırsat" + +#. module: crm_location +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +msgid "Location" +msgstr "" + +#. module: crm_location +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +msgid "Use the city name or the zip code to search the location" +msgstr "" diff --git a/crm_location/i18n/tr_TR.po b/crm_location/i18n/tr_TR.po index a1c5baf7aa3..fe4544298ec 100644 --- a/crm_location/i18n/tr_TR.po +++ b/crm_location/i18n/tr_TR.po @@ -3,14 +3,15 @@ # * crm_location # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: crm (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-31 02:41+0000\n" -"PO-Revision-Date: 2016-03-10 18:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-crm-8-0/language/tr_TR/)\n" +"POT-Creation-Date: 2017-06-19 02:41+0000\n" +"PO-Revision-Date: 2017-06-19 02:41+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "Konum" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" From 14653a6278794dda1dbf5a33287034c78fb7d81d Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 02:19:24 +0000 Subject: [PATCH 06/21] [UPD] Update crm_location.pot --- crm_location/i18n/bg.po | 15 +++++++------ crm_location/i18n/ca.po | 4 ++-- crm_location/i18n/crm_location.pot | 36 ++++++++++++++++++++++++++++++ crm_location/i18n/de.po | 4 ++-- crm_location/i18n/es.po | 4 ++-- crm_location/i18n/es_ES.po | 7 +++--- crm_location/i18n/fi.po | 4 ++-- crm_location/i18n/fr.po | 4 ++-- crm_location/i18n/hr.po | 7 +++--- crm_location/i18n/it.po | 4 ++-- crm_location/i18n/nl_NL.po | 7 +++--- crm_location/i18n/pt_BR.po | 7 +++--- crm_location/i18n/sk.po | 15 +++++++------ crm_location/i18n/sl.po | 7 +++--- crm_location/i18n/tr.po | 4 ++-- crm_location/i18n/tr_TR.po | 7 +++--- crm_location/i18n/zh_CN.po | 15 +++++++------ 17 files changed, 98 insertions(+), 53 deletions(-) create mode 100644 crm_location/i18n/crm_location.pot diff --git a/crm_location/i18n/bg.po b/crm_location/i18n/bg.po index 9cea7f4ebce..3f8ab14d347 100644 --- a/crm_location/i18n/bg.po +++ b/crm_location/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,17 @@ msgstr "" "POT-Creation-Date: 2016-11-02 14:15+0000\n" "PO-Revision-Date: 2016-03-10 18:53+0000\n" "Last-Translator: <>\n" -"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-crm-8-0/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-crm-8-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: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Следа/Възможност" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/ca.po b/crm_location/i18n/ca.po index f5d55bf799e..165bfeeb9c8 100644 --- a/crm_location/i18n/ca.po +++ b/crm_location/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/crm_location.pot b/crm_location/i18n/crm_location.pot new file mode 100644 index 00000000000..1104cfaf221 --- /dev/null +++ b/crm_location/i18n/crm_location.pot @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_location +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.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: crm_location +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +msgid "City completion" +msgstr "" + +#. module: crm_location +#: model:ir.model,name:crm_location.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_location +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +msgid "Location" +msgstr "" + +#. module: crm_location +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +msgid "Use the city name or the zip code to search the location" +msgstr "" + diff --git a/crm_location/i18n/de.po b/crm_location/i18n/de.po index 494bc47ceac..156b861c27c 100644 --- a/crm_location/i18n/de.po +++ b/crm_location/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/es.po b/crm_location/i18n/es.po index 4eafee88628..335e4b7c82a 100644 --- a/crm_location/i18n/es.po +++ b/crm_location/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/es_ES.po b/crm_location/i18n/es_ES.po index 2da5d9eafad..5bc97550b76 100644 --- a/crm_location/i18n/es_ES.po +++ b/crm_location/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-19 02:41+0000\n" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/fi.po b/crm_location/i18n/fi.po index 8feb18f007c..27865234dd2 100644 --- a/crm_location/i18n/fi.po +++ b/crm_location/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/fr.po b/crm_location/i18n/fr.po index 4f7f2ed5c1c..d5b07380799 100644 --- a/crm_location/i18n/fr.po +++ b/crm_location/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location diff --git a/crm_location/i18n/hr.po b/crm_location/i18n/hr.po index 8b962a55e51..f6d17a04907 100644 --- a/crm_location/i18n/hr.po +++ b/crm_location/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: crm_location #: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads diff --git a/crm_location/i18n/it.po b/crm_location/i18n/it.po index 70024ab7097..3631241cd55 100644 --- a/crm_location/i18n/it.po +++ b/crm_location/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+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: crm_location diff --git a/crm_location/i18n/nl_NL.po b/crm_location/i18n/nl_NL.po index 668d766736b..c4eab8f440b 100644 --- a/crm_location/i18n/nl_NL.po +++ b/crm_location/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-24 01:39+0000\n" "PO-Revision-Date: 2017-06-24 01:39+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location diff --git a/crm_location/i18n/pt_BR.po b/crm_location/i18n/pt_BR.po index 09cc72240f6..9dc23a3f660 100644 --- a/crm_location/i18n/pt_BR.po +++ b/crm_location/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-19 02:41+0000\n" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location diff --git a/crm_location/i18n/sk.po b/crm_location/i18n/sk.po index 42782e27309..4061d5e0574 100644 --- a/crm_location/i18n/sk.po +++ b/crm_location/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,17 @@ msgstr "" "POT-Creation-Date: 2016-12-17 01:26+0000\n" "PO-Revision-Date: 2016-03-10 18:53+0000\n" "Last-Translator: <>\n" -"Language-Team: Slovak (http://www.transifex.com/oca/OCA-crm-8-0/language/sk/)\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-crm-8-0/language/" +"sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Iniciatíva/Príležitosť" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/sl.po b/crm_location/i18n/sl.po index 673218f7829..f41bdea2276 100644 --- a/crm_location/i18n/sl.po +++ b/crm_location/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+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: crm_location #: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads diff --git a/crm_location/i18n/tr.po b/crm_location/i18n/tr.po index 98e2d15ac02..6ae8399d9a8 100644 --- a/crm_location/i18n/tr.po +++ b/crm_location/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # Ediz Duman , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: Ediz Duman , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location diff --git a/crm_location/i18n/tr_TR.po b/crm_location/i18n/tr_TR.po index fe4544298ec..5e983722741 100644 --- a/crm_location/i18n/tr_TR.po +++ b/crm_location/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-06-19 02:41+0000\n" "PO-Revision-Date: 2017-06-19 02:41+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_location diff --git a/crm_location/i18n/zh_CN.po b/crm_location/i18n/zh_CN.po index dd095ecf78a..8b6d8d240b1 100644 --- a/crm_location/i18n/zh_CN.po +++ b/crm_location/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_location -# +# # Translators: msgid "" msgstr "" @@ -10,16 +10,17 @@ msgstr "" "POT-Creation-Date: 2017-02-25 01:51+0000\n" "PO-Revision-Date: 2016-03-10 18:53+0000\n" "Last-Translator: <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-crm-8-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-crm-8-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: crm_location -#: view:crm.lead:crm_location.crm_case_form_view_leads -#: view:crm.lead:crm_location.crm_case_form_view_oppor +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -29,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "线索/商机" #. module: crm_location -#: field:crm.lead,location_id:0 +#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id msgid "Location" msgstr "" #. module: crm_location -#: help:crm.lead,location_id:0 +#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" msgstr "" From 6a566011d6dfcd0a58f0aee6ec2027b6ae910d84 Mon Sep 17 00:00:00 2001 From: Sergio Zanchetta Date: Sat, 27 Oct 2018 23:16:53 +0000 Subject: [PATCH 07/21] Translated using Weblate (Italian) Currently translated at 100.0% (4 of 4 strings) Translation: crm-10.0/crm-10.0-crm_location Translate-URL: https://translation.odoo-community.org/projects/crm-10-0/crm-10-0-crm_location/it/ --- crm_location/i18n/it.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/crm_location/i18n/it.po b/crm_location/i18n/it.po index 3631241cd55..d17b367a557 100644 --- a/crm_location/i18n/it.po +++ b/crm_location/i18n/it.po @@ -9,20 +9,21 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-19 02:41+0000\n" -"PO-Revision-Date: 2017-06-19 02:41+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2018-10-29 00:01+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.2.1\n" #. module: crm_location #: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads #: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" -msgstr "Completamento Città" +msgstr "Completamento città" #. module: crm_location #: model:ir.model,name:crm_location.model_crm_lead @@ -37,4 +38,4 @@ msgstr "Posizione" #. module: crm_location #: model:ir.model.fields,help:crm_location.field_crm_lead_location_id msgid "Use the city name or the zip code to search the location" -msgstr "" +msgstr "Usare il nome della città o il CAP per cercare la posizione" From 8df5fd632ad7ef4d2a835b77a056825d79323b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20D=C3=ADaz?= Date: Mon, 20 May 2019 11:35:01 +0200 Subject: [PATCH 08/21] [MIG] crm_location: Migration to 12.0 --- crm_location/README.rst | 70 +++- crm_location/__init__.py | 1 - crm_location/__manifest__.py | 5 +- crm_location/models/__init__.py | 1 - crm_location/models/crm_lead.py | 10 +- crm_location/readme/CONTRIBUTORS.rst | 4 + crm_location/readme/DESCRIPTION.rst | 3 + crm_location/readme/INSTALL.rst | 4 + crm_location/static/description/index.html | 432 +++++++++++++++++++++ crm_location/tests/__init__.py | 1 - crm_location/tests/test_crm_location.py | 42 +- 11 files changed, 521 insertions(+), 52 deletions(-) create mode 100644 crm_location/readme/CONTRIBUTORS.rst create mode 100644 crm_location/readme/DESCRIPTION.rst create mode 100644 crm_location/readme/INSTALL.rst create mode 100644 crm_location/static/description/index.html diff --git a/crm_location/README.rst b/crm_location/README.rst index 21f9cea14bc..d5cf65f966c 100644 --- a/crm_location/README.rst +++ b/crm_location/README.rst @@ -1,13 +1,38 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - +============ CRM location ============ +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fcrm-lightgray.png?logo=github + :target: https://github.com/OCA/crm/tree/12.0/crm_location + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-12-0/crm-12-0-crm_location + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/111/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module introduces a better zip. It enables zip, city, state and country auto-completion on lead. +**Table of contents** + +.. contents:: + :local: Installation ============ @@ -17,40 +42,45 @@ To install this module, you need: * crm * base_location located in OCA/partner-contact repo -Usage -===== +Bug Tracker +=========== -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/111/10.0 +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. -Bug Tracker -=========== +Credits +======= -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. +Authors +~~~~~~~ +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ + * Endika Iglesias * Rafael Blasco * Luis M. Ontalba +* Alexandre Díaz + +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/crm `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/crm_location/__init__.py b/crm_location/__init__.py index 4d8ae82d6d7..e87e85c4c49 100644 --- a/crm_location/__init__.py +++ b/crm_location/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/crm_location/__manifest__.py b/crm_location/__manifest__.py index 736f39d5019..201f5319dba 100644 --- a/crm_location/__manifest__.py +++ b/crm_location/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Antiun Ingenieria - Endika Iglesias # Copyright 2017 Tecnativa - Luis Martínez # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html @@ -6,7 +5,7 @@ { 'name': 'CRM location', 'category': 'Customer Relationship Management', - 'version': '10.0.1.0.0', + 'version': '12.0.1.0.0', 'depends': [ 'crm', 'base_location', @@ -14,7 +13,7 @@ 'data': ['views/crm_lead_view.xml'], 'author': 'Tecnativa, ' 'Odoo Community Association (OCA)', - 'website': 'https://www.tecnativa.com', + 'website': 'https://github.com/OCA/crm', 'license': 'AGPL-3', 'installable': True, } diff --git a/crm_location/models/__init__.py b/crm_location/models/__init__.py index a2258dbb77f..ff51181c5ee 100644 --- a/crm_location/models/__init__.py +++ b/crm_location/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import crm_lead diff --git a/crm_location/models/crm_lead.py b/crm_location/models/crm_lead.py index b976591fb89..0d14974a6e0 100644 --- a/crm_location/models/crm_lead.py +++ b/crm_location/models/crm_lead.py @@ -1,6 +1,6 @@ -# -*- coding: utf-8 -*- # Copyright 2015 Antiun Ingenieria - Endika Iglesias # Copyright 2017 Tecnativa - Luis Martínez +# Copyright 2019 Tecnativa - Alexandre Díaz # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from odoo import api, fields, models @@ -14,12 +14,12 @@ class CrmLead(models.Model): def on_change_city(self): if self.location_id: self.zip = self.location_id.name - self.city = self.location_id.city - self.state_id = self.location_id.state_id - self.country_id = self.location_id.country_id + self.city = self.location_id.city_id.name + self.state_id = self.location_id.city_id.state_id + self.country_id = self.location_id.city_id.country_id location_id = fields.Many2one( - 'res.better.zip', + 'res.city.zip', string='Location', index=True, help='Use the city name or the zip code to search the location', diff --git a/crm_location/readme/CONTRIBUTORS.rst b/crm_location/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..bf4a448919e --- /dev/null +++ b/crm_location/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Endika Iglesias +* Rafael Blasco +* Luis M. Ontalba +* Alexandre Díaz diff --git a/crm_location/readme/DESCRIPTION.rst b/crm_location/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..b5349751d43 --- /dev/null +++ b/crm_location/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module introduces a better zip. + +It enables zip, city, state and country auto-completion on lead. diff --git a/crm_location/readme/INSTALL.rst b/crm_location/readme/INSTALL.rst new file mode 100644 index 00000000000..5eafcba0994 --- /dev/null +++ b/crm_location/readme/INSTALL.rst @@ -0,0 +1,4 @@ +To install this module, you need: + +* crm +* base_location located in OCA/partner-contact repo diff --git a/crm_location/static/description/index.html b/crm_location/static/description/index.html new file mode 100644 index 00000000000..ad0600c698b --- /dev/null +++ b/crm_location/static/description/index.html @@ -0,0 +1,432 @@ + + + + + + +CRM location + + + +
+

CRM location

+ + +

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

+

This module introduces a better zip.

+

It enables zip, city, state and country auto-completion on lead.

+

Table of contents

+ +
+

Installation

+

To install this module, you need:

+
    +
  • crm
  • +
  • base_location located in OCA/partner-contact repo
  • +
+
+
+

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

+
    +
  • Tecnativa
  • +
+
+
+

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/crm project on GitHub.

+

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

+
+
+
+ + diff --git a/crm_location/tests/__init__.py b/crm_location/tests/__init__.py index d1c4c63b7ac..3fa4c4c406f 100644 --- a/crm_location/tests/__init__.py +++ b/crm_location/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 from . import test_crm_location diff --git a/crm_location/tests/test_crm_location.py b/crm_location/tests/test_crm_location.py index 45622cbcc15..cf0ea15469f 100644 --- a/crm_location/tests/test_crm_location.py +++ b/crm_location/tests/test_crm_location.py @@ -1,5 +1,5 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - Luis M. Ontalba +# Copyright 2019 Tecnativa - Alexandre Díaz # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 from odoo.tests import common @@ -11,42 +11,42 @@ class TestCrmLocation(common.SavepointCase): def setUpClass(cls): super(TestCrmLocation, cls).setUpClass() cls.country = cls.env['res.country'].create({ - 'name': 'Country test', + 'name': 'Test country', }) cls.state = cls.env['res.country.state'].create({ 'name': 'Test state', 'code': 'Test state code', 'country_id': cls.country.id, }) - cls.location = cls.env['res.better.zip'].create({ - 'name': '12345', - 'city': 'Test city', + cls.city = cls.env['res.city'].create({ + 'name': 'Test city', 'country_id': cls.country.id, - 'code': 'Test code', 'state_id': cls.state.id, }) + cls.location = cls.env['res.city.zip'].create({ + 'name': '12345', + 'city_id': cls.city.id + }) cls.lead = cls.env['crm.lead'].create({ 'name': 'Test lead', }) cls.partner = cls.env['res.partner'].create({ 'name': 'Test partner name', + 'state_id': cls.state.id, + 'country_id': cls.country.id, + 'city_id': cls.city.id, }) def test_on_change_city(self): - lead = self.lead - location = self.location - lead.location_id = location.id - lead.on_change_city() - self.assertEqual(lead.zip, location.name) - self.assertEqual(lead.city, location.city) - self.assertEqual(lead.state_id, location.state_id) - self.assertEqual(lead.country_id, location.country_id) + self.lead.location_id = self.location.id + self.lead.on_change_city() + self.assertEqual(self.lead.zip, '12345') + self.assertEqual(self.lead.city, 'Test city') + self.assertEqual(self.lead.state_id.name, 'Test state') + self.assertEqual(self.lead.country_id.name, 'Test country') def test_onchange_partner_id_crm_location(self): - lead = self.lead - partner = self.partner - location = self.location - partner.zip_id = location.id - lead.partner_id = partner.id - lead.onchange_partner_id_crm_location() - self.assertEqual(lead.location_id, partner.zip_id) + self.partner.zip_id = self.location.id + self.lead.partner_id = self.partner.id + self.lead.onchange_partner_id_crm_location() + self.assertEqual(self.lead.location_id.name, '12345') From 914b368c18fe56132fb0115d26351675e1d84d9f Mon Sep 17 00:00:00 2001 From: oca-travis Date: Thu, 23 May 2019 07:26:04 +0000 Subject: [PATCH 09/21] [UPD] Update crm_location.pot --- crm_location/i18n/crm_location.pot | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crm_location/i18n/crm_location.pot b/crm_location/i18n/crm_location.pot index 1104cfaf221..21e38cc5343 100644 --- a/crm_location/i18n/crm_location.pot +++ b/crm_location/i18n/crm_location.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,8 +14,8 @@ msgstr "" "Plural-Forms: \n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -25,12 +25,12 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" From a74cf3de516b3c6cd5719fd84ccf1bb414b65901 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 16 Jun 2019 11:01:15 +0000 Subject: [PATCH 10/21] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: crm-12.0/crm-12.0-crm_location Translate-URL: https://translation.odoo-community.org/projects/crm-12-0/crm-12-0-crm_location/ --- crm_location/i18n/bg.po | 8 ++++---- crm_location/i18n/ca.po | 8 ++++---- crm_location/i18n/de.po | 8 ++++---- crm_location/i18n/es.po | 8 ++++---- crm_location/i18n/es_ES.po | 8 ++++---- crm_location/i18n/fi.po | 8 ++++---- crm_location/i18n/fr.po | 8 ++++---- crm_location/i18n/hr.po | 8 ++++---- crm_location/i18n/it.po | 8 ++++---- crm_location/i18n/nl_NL.po | 8 ++++---- crm_location/i18n/pt_BR.po | 8 ++++---- crm_location/i18n/sk.po | 8 ++++---- crm_location/i18n/sl.po | 8 ++++---- crm_location/i18n/tr.po | 8 ++++---- crm_location/i18n/tr_TR.po | 8 ++++---- crm_location/i18n/zh_CN.po | 8 ++++---- 16 files changed, 64 insertions(+), 64 deletions(-) diff --git a/crm_location/i18n/bg.po b/crm_location/i18n/bg.po index 3f8ab14d347..05d3a9e212a 100644 --- a/crm_location/i18n/bg.po +++ b/crm_location/i18n/bg.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Следа/Възможност" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/ca.po b/crm_location/i18n/ca.po index 165bfeeb9c8..fca18f4b122 100644 --- a/crm_location/i18n/ca.po +++ b/crm_location/i18n/ca.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Ubicació " #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/de.po b/crm_location/i18n/de.po index 156b861c27c..931ae5e14b3 100644 --- a/crm_location/i18n/de.po +++ b/crm_location/i18n/de.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Stadtvervollständigung" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Lead/Chance" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Standort" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "Verwenden Sie Ort oder PLZ, um den Standort festzulegen" diff --git a/crm_location/i18n/es.po b/crm_location/i18n/es.po index 335e4b7c82a..dbb31293310 100644 --- a/crm_location/i18n/es.po +++ b/crm_location/i18n/es.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Autocompletado a partir de la ciudad" @@ -30,12 +30,12 @@ msgid "Lead/Opportunity" msgstr "Iniciativa/Oportunidad" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Ubicación" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" "Utilice el nombre de la ciudad o el código postal para buscar la ubicación" diff --git a/crm_location/i18n/es_ES.po b/crm_location/i18n/es_ES.po index 5bc97550b76..edcef3d2d2b 100644 --- a/crm_location/i18n/es_ES.po +++ b/crm_location/i18n/es_ES.po @@ -20,8 +20,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Ubicación" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/fi.po b/crm_location/i18n/fi.po index 27865234dd2..f3eb7d48807 100644 --- a/crm_location/i18n/fi.po +++ b/crm_location/i18n/fi.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Sijainti" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/fr.po b/crm_location/i18n/fr.po index d5b07380799..178e32abdae 100644 --- a/crm_location/i18n/fr.po +++ b/crm_location/i18n/fr.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Piste/Opportunité" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Emplacement" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/hr.po b/crm_location/i18n/hr.po index f6d17a04907..be5b9f8f2d9 100644 --- a/crm_location/i18n/hr.po +++ b/crm_location/i18n/hr.po @@ -20,8 +20,8 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Završetak grada" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "Potencijalni klijent" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Lokacija" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "Upište ime grada ili poštanski broj kako biste pretražili lokaciju." diff --git a/crm_location/i18n/it.po b/crm_location/i18n/it.po index d17b367a557..585d24c6a31 100644 --- a/crm_location/i18n/it.po +++ b/crm_location/i18n/it.po @@ -20,8 +20,8 @@ msgstr "" "X-Generator: Weblate 3.2.1\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Completamento città" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "Lead/Opportunità" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Posizione" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "Usare il nome della città o il CAP per cercare la posizione" diff --git a/crm_location/i18n/nl_NL.po b/crm_location/i18n/nl_NL.po index c4eab8f440b..651d7fb712b 100644 --- a/crm_location/i18n/nl_NL.po +++ b/crm_location/i18n/nl_NL.po @@ -20,8 +20,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Locatie" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "Gebruik de plaatsnaam of de postcode om de locatie te vinden" diff --git a/crm_location/i18n/pt_BR.po b/crm_location/i18n/pt_BR.po index 9dc23a3f660..a2690af710b 100644 --- a/crm_location/i18n/pt_BR.po +++ b/crm_location/i18n/pt_BR.po @@ -20,8 +20,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "Prospector/Oportunidade" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Location" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/sk.po b/crm_location/i18n/sk.po index 4061d5e0574..b3d1721de0d 100644 --- a/crm_location/i18n/sk.po +++ b/crm_location/i18n/sk.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Iniciatíva/Príležitosť" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/sl.po b/crm_location/i18n/sl.po index f41bdea2276..a538eec2f13 100644 --- a/crm_location/i18n/sl.po +++ b/crm_location/i18n/sl.po @@ -20,8 +20,8 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "Dokončevanje kraja" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "Indic/priložnost" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Lokacija" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "Uporabi ime kraja ali poštno številko za iskanje lokacije" diff --git a/crm_location/i18n/tr.po b/crm_location/i18n/tr.po index 6ae8399d9a8..532841bc9ce 100644 --- a/crm_location/i18n/tr.po +++ b/crm_location/i18n/tr.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "Aday/Fırsat" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/tr_TR.po b/crm_location/i18n/tr_TR.po index 5e983722741..9078f5ea93d 100644 --- a/crm_location/i18n/tr_TR.po +++ b/crm_location/i18n/tr_TR.po @@ -20,8 +20,8 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -31,11 +31,11 @@ msgid "Lead/Opportunity" msgstr "" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "Konum" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" diff --git a/crm_location/i18n/zh_CN.po b/crm_location/i18n/zh_CN.po index 8b6d8d240b1..c37a4d6ec76 100644 --- a/crm_location/i18n/zh_CN.po +++ b/crm_location/i18n/zh_CN.po @@ -19,8 +19,8 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_location -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads -#: model:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_leads +#: model_terms:ir.ui.view,arch_db:crm_location.crm_case_form_view_oppor msgid "City completion" msgstr "" @@ -30,11 +30,11 @@ msgid "Lead/Opportunity" msgstr "线索/商机" #. module: crm_location -#: model:ir.model.fields,field_description:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,field_description:crm_location.field_crm_lead__location_id msgid "Location" msgstr "" #. module: crm_location -#: model:ir.model.fields,help:crm_location.field_crm_lead_location_id +#: model:ir.model.fields,help:crm_location.field_crm_lead__location_id msgid "Use the city name or the zip code to search the location" msgstr "" From 18af0880bad209307de12c6b7785730ba4fa06b0 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 02:49:12 +0000 Subject: [PATCH 11/21] [UPD] README.rst --- crm_location/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crm_location/static/description/index.html b/crm_location/static/description/index.html index ad0600c698b..0ba3e3767ff 100644 --- a/crm_location/static/description/index.html +++ b/crm_location/static/description/index.html @@ -3,7 +3,7 @@ - + CRM location