-
-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from Tecnativa/10.0-mig-crm_location
[10.0][MIG] crm_location
- Loading branch information
Showing
22 changed files
with
642 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <endikaig@antiun.com> | ||
# | ||
# 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 <http://www.gnu.org/licenses/>. | ||
# | ||
############################################################################## | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,20 @@ | ||
# -*- 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 <endikaig@antiun.com> | ||
# | ||
# 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 <http://www.gnu.org/licenses/>. | ||
# | ||
############################################################################## | ||
# Copyright 2015 Antiun Ingenieria - Endika Iglesias <endikaig@antiun.com> | ||
# 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': '8.0.1.0.0', | ||
'version': '10.0.1.0.0', | ||
'depends': [ | ||
'crm', | ||
'base_location', | ||
], | ||
'data': ['views/crm_lead_view.xml'], | ||
'author': 'Antiun Ingeniería S.L., ' | ||
'author': 'Tecnativa, ' | ||
'Odoo Community Association (OCA)', | ||
'website': 'http://www.antiun.com', | ||
'website': 'https://www.tecnativa.com', | ||
'license': 'AGPL-3', | ||
'installable': False, | ||
'installable': True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * crm_location | ||
# | ||
# Translators: | ||
# Rudolf Schnapka <rs@techno-flex.de>, 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 <rs@techno-flex.de>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * crm_location | ||
# | ||
# Translators: | ||
# Carles Antoli <carlesantoli@hotmail.com>, 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 <carlesantoli@hotmail.com>\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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 "" |
Oops, something went wrong.