diff --git a/crm_lead_website/README.rst b/crm_lead_website/README.rst new file mode 100644 index 00000000000..75f99877904 --- /dev/null +++ b/crm_lead_website/README.rst @@ -0,0 +1,65 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================ +Website in leads +================ + +This module was written to extend the functionality of CRM leads to support +setting the website. + +Configuration +============= + +To see some effects of this module, you need to enable leads: + +#. Enable *Sales (or CRM) > Configuration > Settings > Use leads if you need a + qualification step before creating an opportunity or a customer*. + +Usage +===== + +To use this module, you need to: + +#. Go to *Sales (or CRM) > Leads*. +#. Open a lead. +#. You will see the new field. + +.. 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. + + +Credits +======= + +Contributors +------------ + +* Rafael Blasco +* Jairo Llopis +* David Vidal + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/crm_lead_website/__init__.py b/crm_lead_website/__init__.py new file mode 100644 index 00000000000..cde864bae21 --- /dev/null +++ b/crm_lead_website/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/crm_lead_website/__manifest__.py b/crm_lead_website/__manifest__.py new file mode 100644 index 00000000000..d797ecb88c3 --- /dev/null +++ b/crm_lead_website/__manifest__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# Copyright 2016 Jairo Llopis +# Copyright 2017 David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Website in leads", + "summary": "Add Website field to leads", + "version": "10.0.1.0.0", + "category": "Customer Relationship Management", + "website": "https://www.tecnativa.com", + "author": "Antiun Ingeniería S.L., " + "Tecnativa, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "depends": [ + "crm", + ], + "data": [ + "views/crm_lead.xml", + ], +} diff --git a/crm_lead_website/i18n/ar.po b/crm_lead_website/i18n/ar.po new file mode 100644 index 00000000000..cfdd5e3266e --- /dev/null +++ b/crm_lead_website/i18n/ar.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "الموقع" diff --git a/crm_lead_website/i18n/bg.po b/crm_lead_website/i18n/bg.po new file mode 100644 index 00000000000..06ee736ce96 --- /dev/null +++ b/crm_lead_website/i18n/bg.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Следа/Възможност" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Уебсайт" diff --git a/crm_lead_website/i18n/bs.po b/crm_lead_website/i18n/bs.po new file mode 100644 index 00000000000..c93175d0156 --- /dev/null +++ b/crm_lead_website/i18n/bs.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Web stranica" diff --git a/crm_lead_website/i18n/ca.po b/crm_lead_website/i18n/ca.po new file mode 100644 index 00000000000..0639e883f6d --- /dev/null +++ b/crm_lead_website/i18n/ca.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Lloc web" diff --git a/crm_lead_website/i18n/cs.po b/crm_lead_website/i18n/cs.po new file mode 100644 index 00000000000..e7d56ac8a20 --- /dev/null +++ b/crm_lead_website/i18n/cs.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webová stránka" diff --git a/crm_lead_website/i18n/da.po b/crm_lead_website/i18n/da.po new file mode 100644 index 00000000000..27bf187c067 --- /dev/null +++ b/crm_lead_website/i18n/da.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Hjemmeside" diff --git a/crm_lead_website/i18n/de.po b/crm_lead_website/i18n/de.po new file mode 100644 index 00000000000..ac1c0c1f55b --- /dev/null +++ b/crm_lead_website/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 02:27+0000\n" +"PO-Revision-Date: 2017-03-28 02:27+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Chance" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webseite" diff --git a/crm_lead_website/i18n/el_GR.po b/crm_lead_website/i18n/el_GR.po new file mode 100644 index 00000000000..28a17fce838 --- /dev/null +++ b/crm_lead_website/i18n/el_GR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Ιστότοπος" diff --git a/crm_lead_website/i18n/en_GB.po b/crm_lead_website/i18n/en_GB.po new file mode 100644 index 00000000000..f6b7f4d2d48 --- /dev/null +++ b/crm_lead_website/i18n/en_GB.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Website" diff --git a/crm_lead_website/i18n/es.po b/crm_lead_website/i18n/es.po new file mode 100644 index 00000000000..8b52157ae52 --- /dev/null +++ b/crm_lead_website/i18n/es.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciativa/Oportunidad" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/es_AR.po b/crm_lead_website/i18n/es_AR.po new file mode 100644 index 00000000000..b78e1aec4e2 --- /dev/null +++ b/crm_lead_website/i18n/es_AR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/es_CL.po b/crm_lead_website/i18n/es_CL.po new file mode 100644 index 00000000000..7b4cfc72ed0 --- /dev/null +++ b/crm_lead_website/i18n/es_CL.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio Web" diff --git a/crm_lead_website/i18n/es_CO.po b/crm_lead_website/i18n/es_CO.po new file mode 100644 index 00000000000..809a22a43ae --- /dev/null +++ b/crm_lead_website/i18n/es_CO.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio Web" diff --git a/crm_lead_website/i18n/es_CR.po b/crm_lead_website/i18n/es_CR.po new file mode 100644 index 00000000000..ad94cb22d00 --- /dev/null +++ b/crm_lead_website/i18n/es_CR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/es_DO.po b/crm_lead_website/i18n/es_DO.po new file mode 100644 index 00000000000..f6bdc4f14e1 --- /dev/null +++ b/crm_lead_website/i18n/es_DO.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/es_EC.po b/crm_lead_website/i18n/es_EC.po new file mode 100644 index 00000000000..95723336542 --- /dev/null +++ b/crm_lead_website/i18n/es_EC.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/es_MX.po b/crm_lead_website/i18n/es_MX.po new file mode 100644 index 00000000000..b357ba10b09 --- /dev/null +++ b/crm_lead_website/i18n/es_MX.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio Web" diff --git a/crm_lead_website/i18n/es_PE.po b/crm_lead_website/i18n/es_PE.po new file mode 100644 index 00000000000..5060c1c9ecf --- /dev/null +++ b/crm_lead_website/i18n/es_PE.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio Web" diff --git a/crm_lead_website/i18n/et.po b/crm_lead_website/i18n/et.po new file mode 100644 index 00000000000..d5567c8442f --- /dev/null +++ b/crm_lead_website/i18n/et.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Veebileht" diff --git a/crm_lead_website/i18n/eu.po b/crm_lead_website/i18n/eu.po new file mode 100644 index 00000000000..3b1bad18307 --- /dev/null +++ b/crm_lead_website/i18n/eu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webgunea" diff --git a/crm_lead_website/i18n/fa.po b/crm_lead_website/i18n/fa.po new file mode 100644 index 00000000000..4766e5a5bc6 --- /dev/null +++ b/crm_lead_website/i18n/fa.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "تارنما" diff --git a/crm_lead_website/i18n/fi.po b/crm_lead_website/i18n/fi.po new file mode 100644 index 00000000000..4b187c9bd91 --- /dev/null +++ b/crm_lead_website/i18n/fi.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Verkkosivut" diff --git a/crm_lead_website/i18n/fr.po b/crm_lead_website/i18n/fr.po new file mode 100644 index 00000000000..a49962a37b5 --- /dev/null +++ b/crm_lead_website/i18n/fr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\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" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Piste/Opportunité" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Site Internet" diff --git a/crm_lead_website/i18n/gl.po b/crm_lead_website/i18n/gl.po new file mode 100644 index 00000000000..f5e12b0c2f8 --- /dev/null +++ b/crm_lead_website/i18n/gl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sitio web" diff --git a/crm_lead_website/i18n/he.po b/crm_lead_website/i18n/he.po new file mode 100644 index 00000000000..10dcd41fa2b --- /dev/null +++ b/crm_lead_website/i18n/he.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "אתר" diff --git a/crm_lead_website/i18n/hr.po b/crm_lead_website/i18n/hr.po new file mode 100644 index 00000000000..fbda2ddcbea --- /dev/null +++ b/crm_lead_website/i18n/hr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potencijalni klijent" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Web stranica" diff --git a/crm_lead_website/i18n/hr_HR.po b/crm_lead_website/i18n/hr_HR.po new file mode 100644 index 00000000000..ff35eaaa69d --- /dev/null +++ b/crm_lead_website/i18n/hr_HR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webstranice" diff --git a/crm_lead_website/i18n/hu.po b/crm_lead_website/i18n/hu.po new file mode 100644 index 00000000000..e27f3fb0267 --- /dev/null +++ b/crm_lead_website/i18n/hu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Honlap" diff --git a/crm_lead_website/i18n/id.po b/crm_lead_website/i18n/id.po new file mode 100644 index 00000000000..9b9014e7879 --- /dev/null +++ b/crm_lead_website/i18n/id.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Situs Web" diff --git a/crm_lead_website/i18n/it.po b/crm_lead_website/i18n/it.po new file mode 100644 index 00000000000..dc2361cf615 --- /dev/null +++ b/crm_lead_website/i18n/it.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Opportunità" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Sito internet" diff --git a/crm_lead_website/i18n/ja.po b/crm_lead_website/i18n/ja.po new file mode 100644 index 00000000000..bfb478adb55 --- /dev/null +++ b/crm_lead_website/i18n/ja.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "ウェブサイト" diff --git a/crm_lead_website/i18n/ko.po b/crm_lead_website/i18n/ko.po new file mode 100644 index 00000000000..b9b605d5ac0 --- /dev/null +++ b/crm_lead_website/i18n/ko.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "웹사이트" diff --git a/crm_lead_website/i18n/lt.po b/crm_lead_website/i18n/lt.po new file mode 100644 index 00000000000..e9735dcd6ce --- /dev/null +++ b/crm_lead_website/i18n/lt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Tinklapis" diff --git a/crm_lead_website/i18n/lv.po b/crm_lead_website/i18n/lv.po new file mode 100644 index 00000000000..dc47ea8764d --- /dev/null +++ b/crm_lead_website/i18n/lv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Tīkla vietne" diff --git a/crm_lead_website/i18n/mk.po b/crm_lead_website/i18n/mk.po new file mode 100644 index 00000000000..ed51103830c --- /dev/null +++ b/crm_lead_website/i18n/mk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Вебсајт" diff --git a/crm_lead_website/i18n/mn.po b/crm_lead_website/i18n/mn.po new file mode 100644 index 00000000000..f2a8e85bd95 --- /dev/null +++ b/crm_lead_website/i18n/mn.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Вэбсайт" diff --git a/crm_lead_website/i18n/nb.po b/crm_lead_website/i18n/nb.po new file mode 100644 index 00000000000..0188d5b19bf --- /dev/null +++ b/crm_lead_website/i18n/nb.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Nettsted" diff --git a/crm_lead_website/i18n/nl.po b/crm_lead_website/i18n/nl.po new file mode 100644 index 00000000000..ec270f17c4a --- /dev/null +++ b/crm_lead_website/i18n/nl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Website" diff --git a/crm_lead_website/i18n/pl.po b/crm_lead_website/i18n/pl.po new file mode 100644 index 00000000000..20d765e8f8a --- /dev/null +++ b/crm_lead_website/i18n/pl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Strona WWW" diff --git a/crm_lead_website/i18n/pt_BR.po b/crm_lead_website/i18n/pt_BR.po new file mode 100644 index 00000000000..f0d8ce65eda --- /dev/null +++ b/crm_lead_website/i18n/pt_BR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospector/Oportunidade" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Website" diff --git a/crm_lead_website/i18n/ru.po b/crm_lead_website/i18n/ru.po new file mode 100644 index 00000000000..6cf2770739f --- /dev/null +++ b/crm_lead_website/i18n/ru.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Mikhail - , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Mikhail - , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Сайт" diff --git a/crm_lead_website/i18n/sk.po b/crm_lead_website/i18n/sk.po new file mode 100644 index 00000000000..0865ff4307c --- /dev/null +++ b/crm_lead_website/i18n/sk.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +# gebri , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-17 01:29+0000\n" +"PO-Revision-Date: 2016-12-17 01:29+0000\n" +"Last-Translator: gebri , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciatíva/Príležitosť" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webová stránka" diff --git a/crm_lead_website/i18n/sl.po b/crm_lead_website/i18n/sl.po new file mode 100644 index 00000000000..5fbb29418a6 --- /dev/null +++ b/crm_lead_website/i18n/sl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Indic/priložnost" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Spletna stran" diff --git a/crm_lead_website/i18n/sr.po b/crm_lead_website/i18n/sr.po new file mode 100644 index 00000000000..8f800da6ee4 --- /dev/null +++ b/crm_lead_website/i18n/sr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Web stranica" diff --git a/crm_lead_website/i18n/sr@latin.po b/crm_lead_website/i18n/sr@latin.po new file mode 100644 index 00000000000..fab917cfb56 --- /dev/null +++ b/crm_lead_website/i18n/sr@latin.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Internet stranica" diff --git a/crm_lead_website/i18n/sv.po b/crm_lead_website/i18n/sv.po new file mode 100644 index 00000000000..792d488aae4 --- /dev/null +++ b/crm_lead_website/i18n/sv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Webbplats" diff --git a/crm_lead_website/i18n/th.po b/crm_lead_website/i18n/th.po new file mode 100644 index 00000000000..e90483c9767 --- /dev/null +++ b/crm_lead_website/i18n/th.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "เว็บไซต์" diff --git a/crm_lead_website/i18n/tr.po b/crm_lead_website/i18n/tr.po new file mode 100644 index 00000000000..30d6f5f7b1d --- /dev/null +++ b/crm_lead_website/i18n/tr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\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_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Web Sitesi" diff --git a/crm_lead_website/i18n/uk.po b/crm_lead_website/i18n/uk.po new file mode 100644 index 00000000000..9e699088167 --- /dev/null +++ b/crm_lead_website/i18n/uk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Веб-сайт" diff --git a/crm_lead_website/i18n/vi.po b/crm_lead_website/i18n/vi.po new file mode 100644 index 00000000000..ee1ba2d4a3b --- /dev/null +++ b/crm_lead_website/i18n/vi.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "Trang web" diff --git a/crm_lead_website/i18n/zh_CN.po b/crm_lead_website/i18n/zh_CN.po new file mode 100644 index 00000000000..59420a4db79 --- /dev/null +++ b/crm_lead_website/i18n/zh_CN.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +# Alan Luo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 01:52+0000\n" +"PO-Revision-Date: 2017-02-25 01:52+0000\n" +"Last-Translator: Alan Luo , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "线索/商机" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "网站" diff --git a/crm_lead_website/i18n/zh_TW.po b/crm_lead_website/i18n/zh_TW.po new file mode 100644 index 00000000000..358e8dce4d1 --- /dev/null +++ b/crm_lead_website/i18n/zh_TW.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_website +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 03:41+0000\n" +"PO-Revision-Date: 2016-11-26 03:41+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_lead_website +#: model:ir.model,name:crm_lead_website.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_lead_website +#: model:ir.model.fields,field_description:crm_lead_website.field_crm_lead_website +msgid "Website" +msgstr "網站" diff --git a/crm_lead_website/models/__init__.py b/crm_lead_website/models/__init__.py new file mode 100644 index 00000000000..3dce6aff337 --- /dev/null +++ b/crm_lead_website/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import crm_lead diff --git a/crm_lead_website/models/crm_lead.py b/crm_lead_website/models/crm_lead.py new file mode 100644 index 00000000000..3d765dd96ad --- /dev/null +++ b/crm_lead_website/models/crm_lead.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 David Vidal - Tecnativa S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class CrmLead(models.Model): + _inherit = "crm.lead" + + website = fields.Char() + + @api.model + def _lead_create_contact(self, name, is_company, parent_id=False): + """Add trade name to partner.""" + return (super(CrmLead, + self.with_context(default_website=self.website) + )._lead_create_contact(name, is_company, parent_id)) + + @api.multi + def _onchange_partner_id_values(self, partner_id): + """Recover website from partner if available.""" + result = super(CrmLead, self)._onchange_partner_id_values(partner_id) + if partner_id: + partner = self.env["res.partner"].browse(partner_id) + if partner.website: + result.update({"website": partner.website}) + return result diff --git a/crm_lead_website/static/description/icon.png b/crm_lead_website/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/crm_lead_website/static/description/icon.png differ diff --git a/crm_lead_website/tests/__init__.py b/crm_lead_website/tests/__init__.py new file mode 100644 index 00000000000..f4b11f85176 --- /dev/null +++ b/crm_lead_website/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_lead diff --git a/crm_lead_website/tests/test_lead.py b/crm_lead_website/tests/test_lead.py new file mode 100644 index 00000000000..03a733d7982 --- /dev/null +++ b/crm_lead_website/tests/test_lead.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# Copyright 2017 David Vidal Tecnativa S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.tests.common import TransactionCase + + +class LeadCase(TransactionCase): + def setUp(self): + super(LeadCase, self).setUp() + self.lead = self.env["crm.lead"].create({ + "name": __file__, + "partner_name": u"HÎ" + }) + self.partner = self.env["res.partner"].create({"name": __file__}) + self.test_field = "https://www.tecnativa.com" + + def test_transfered_values(self): + """Field gets transfered when creating partner.""" + self.lead.website = self.test_field + self.lead.handle_partner_assignation() + self.assertEqual(self.lead.partner_id.website, self.test_field) + + def test_onchange_partner_id(self): + """Lead gets website from partner when linked to it.""" + self.partner.website = self.test_field + self.lead.partner_id = self.partner + result = self.lead._onchange_partner_id_values(self.partner.id) + self.assertEqual(result["website"], self.test_field) diff --git a/crm_lead_website/views/crm_lead.xml b/crm_lead_website/views/crm_lead.xml new file mode 100644 index 00000000000..60aae7b271d --- /dev/null +++ b/crm_lead_website/views/crm_lead.xml @@ -0,0 +1,30 @@ + + + + + Add website to lead + crm.lead + + + + + + + + + + + + Add website to opportunity + crm.lead + + + + + + + + + + +