From ce48b01ebd62af0a34fdee26f9a1440455eac303 Mon Sep 17 00:00:00 2001
From: Jairo Llopis
Date: Thu, 15 Oct 2015 18:36:28 +0200
Subject: [PATCH 01/31] Add module website_crm_quick_answer.
---
website_crm_quick_answer/README.rst | 97 ++++++++++++++++++
website_crm_quick_answer/__init__.py | 0
website_crm_quick_answer/__openerp__.py | 22 ++++
website_crm_quick_answer/data/automation.xml | 53 ++++++++++
website_crm_quick_answer/i18n/es.po | 61 +++++++++++
.../i18n/website_crm_quick_answer.pot | 48 +++++++++
.../static/description/icon.png | Bin 0 -> 9455 bytes
7 files changed, 281 insertions(+)
create mode 100644 website_crm_quick_answer/README.rst
create mode 100644 website_crm_quick_answer/__init__.py
create mode 100644 website_crm_quick_answer/__openerp__.py
create mode 100644 website_crm_quick_answer/data/automation.xml
create mode 100644 website_crm_quick_answer/i18n/es.po
create mode 100644 website_crm_quick_answer/i18n/website_crm_quick_answer.pot
create mode 100644 website_crm_quick_answer/static/description/icon.png
diff --git a/website_crm_quick_answer/README.rst b/website_crm_quick_answer/README.rst
new file mode 100644
index 0000000000..168ebd2346
--- /dev/null
+++ b/website_crm_quick_answer/README.rst
@@ -0,0 +1,97 @@
+.. 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
+
+=====================================
+Quick answer for website contact form
+=====================================
+
+This module was written to extend the functionality of the website contact form
+to support sending the interested contact an automatic welcome email and allow
+you to customize it.
+
+Configuration
+=============
+
+To configure this module, you need to:
+
+* Go to *Settings > Technical > Automation > Automated actions > Quick response
+ to website contact form* and edit anything there.
+
+Quicker way to just change the email template (something that most likely you
+will want to do):
+
+* Go to *Settings > Technical > Email > Templates*
+* Edit the template called *Quick response to website contact form*.
+
+Usage
+=====
+
+To use this module, you need to:
+
+* Have an email address in your main company. It will be used as sender
+ address.
+
+.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
+ :alt: Try me on Runbot
+ :target: https://runbot.odoo-community.org/runbot/186/8.0
+
+For further information, please visit:
+
+* https://www.odoo.com/forum/help-1
+
+Known issues / Roadmap
+======================
+
+* The default template is quite basic, you should change that.
+
+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
+`_.
+
+
+License
+=======
+
+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 .
+
+
+Credits
+=======
+
+Contributors
+------------
+
+* Rafael Blasco
+* Jairo Llopis
+
+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.
diff --git a/website_crm_quick_answer/__init__.py b/website_crm_quick_answer/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/website_crm_quick_answer/__openerp__.py b/website_crm_quick_answer/__openerp__.py
new file mode 100644
index 0000000000..6cadeeb800
--- /dev/null
+++ b/website_crm_quick_answer/__openerp__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+# License AGPL-3: Antiun Ingenieria S.L. - Jairo Llopis
+# See README.rst file on addon root folder for more details
+
+{
+ 'name': "Quick answer for website contact form",
+ "summary": "Add an automatic answer for contacts asking for info",
+ 'category': 'Customer Relationship Management',
+ 'version': '8.0.1.0.0',
+ 'depends': [
+ 'marketing_campaign',
+ 'website_crm',
+ ],
+ 'data': [
+ "data/automation.xml",
+ ],
+ 'author': 'Antiun Ingeniería S.L., '
+ 'Odoo Community Association (OCA)',
+ 'website': 'http://www.antiun.com',
+ 'license': 'AGPL-3',
+ 'installable': True,
+}
diff --git a/website_crm_quick_answer/data/automation.xml b/website_crm_quick_answer/data/automation.xml
new file mode 100644
index 0000000000..a45f4a8c0a
--- /dev/null
+++ b/website_crm_quick_answer/data/automation.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+ Coming from the website contact form
+ crm.lead
+
+
+
+
+ Quick response to website contact form
+
+ email
+
+ ${object.company_id.email}
+ ${object.env.context.get("lang")}
+ Thanks for your request
+
+
+ Dear
+ ${object.partner_id and object.partner_id.name or
+ object.contact_name},
+
+ Thanks for contacting us!
+
+ We have received your request and will answer you as soon as
+ possible.
+
+ Please, be patient. Best regards.
+
+
+
+
+ Quick response to website contact form
+
+ email
+
+
+
+
+ Quick response to website contact form
+
+
+ on_create
+
+
+
+
+
diff --git a/website_crm_quick_answer/i18n/es.po b/website_crm_quick_answer/i18n/es.po
new file mode 100644
index 0000000000..41456c5395
--- /dev/null
+++ b/website_crm_quick_answer/i18n/es.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-15 18:34+0200\n"
+"PO-Revision-Date: 2015-10-15 18:35+0200\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.5\n"
+"Last-Translator: \n"
+"Language: es\n"
+
+#. module: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+" Estimado/a\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" ¡Gracias por contactarnos!
\n"
+" \n"
+" Hemos recibido su solicitud y será respondida con la mayor prontitud posible.\n"
+"
\n"
+" Por favor, sea paciente. Un cordial saludo.
\n"
+" "
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Procedentes del formulario de contacto del sitio web"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Respuesta rápida al formulario de contacto del sitio web"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Gracias por su solicitud"
diff --git a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
new file mode 100644
index 0000000000..7244e48b34
--- /dev/null
+++ b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
@@ -0,0 +1,48 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-10-15 16:33+0000\n"
+"PO-Revision-Date: 2015-10-15 16:33+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid "\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr ""
+
diff --git a/website_crm_quick_answer/static/description/icon.png b/website_crm_quick_answer/static/description/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d
GIT binary patch
literal 9455
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
z
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
Xviia!U7SGha1wx#SCgwmn*{w2TRX*I
literal 0
HcmV?d00001
From 8e199202f3818201d8c6aff77b78d241a49bc6cc Mon Sep 17 00:00:00 2001
From: Jairo Llopis
Date: Fri, 16 Oct 2015 18:18:22 +0200
Subject: [PATCH 02/31] Remove unexisting field.
---
website_crm_quick_answer/data/automation.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/website_crm_quick_answer/data/automation.xml b/website_crm_quick_answer/data/automation.xml
index a45f4a8c0a..241f9f9780 100644
--- a/website_crm_quick_answer/data/automation.xml
+++ b/website_crm_quick_answer/data/automation.xml
@@ -13,7 +13,6 @@
Quick response to website contact form
- email
${object.company_id.email}
${object.env.context.get("lang")}
From 32cc07fd79eec8ccbb81b74f98dc5f44ef120146 Mon Sep 17 00:00:00 2001
From: Jairo Llopis
Date: Mon, 16 Nov 2015 16:13:47 +0100
Subject: [PATCH 03/31] Filter by medium too.
---
website_crm_quick_answer/data/automation.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/website_crm_quick_answer/data/automation.xml b/website_crm_quick_answer/data/automation.xml
index 241f9f9780..ea797f074c 100644
--- a/website_crm_quick_answer/data/automation.xml
+++ b/website_crm_quick_answer/data/automation.xml
@@ -6,8 +6,8 @@
Coming from the website contact form
crm.lead
+ eval="[('section_id', '=', ref('website.salesteam_website_sales')),
+ ('medium_id', '=', ref('crm.crm_medium_website'))]"/>
From 0f7567f6bbd1121e58500a3577211dc03db29d21 Mon Sep 17 00:00:00 2001
From: Antonio Espinosa
Date: Tue, 24 Nov 2015 11:04:43 +0100
Subject: [PATCH 04/31] Allowing all users to read filter when creating a lead
or an opportunity
---
website_crm_quick_answer/data/automation.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/website_crm_quick_answer/data/automation.xml b/website_crm_quick_answer/data/automation.xml
index ea797f074c..8923c71b56 100644
--- a/website_crm_quick_answer/data/automation.xml
+++ b/website_crm_quick_answer/data/automation.xml
@@ -4,6 +4,7 @@
Coming from the website contact form
+
crm.lead
-
-
+
+
-
- Coming from the website contact form
-
- crm.lead
-
-
-
-
- Quick response to website contact form
-
-
- ${object.company_id.email}
- ${object.env.context.get("lang")}
- Thanks for your request
-
-
- Dear
- ${object.partner_id and object.partner_id.name or
+
+ Quick response to website contact form
+
+
+ ${object.company_id.email}
+ ${object.env.context.get("lang")}
+ Thanks for your request
+
+
+ Dear
+ ${object.partner_id and object.partner_id.name or
object.contact_name},
-
- Thanks for contacting us!
-
- We have received your request and will answer you as soon as
- possible.
-
- Please, be patient. Best regards.
-
-
+
+ Thanks for contacting us!
+
+ We have received your request and will answer you as soon as
+ possible.
+
+ Please, be patient. Best regards.
+
+
+
+
+
+
+
+ Coming from the website contact form
+
+ crm.lead
+
+
-
- Quick response to website contact form
-
- email
-
-
+
+ Quick response to website contact form
+
+ email
+
+
-
- Quick response to website contact form
-
-
- on_create
-
-
+
+ Quick response to website contact form
+
+
+ on_create
+
+
-
-
+
+
diff --git a/website_crm_quick_answer/i18n/ca.po b/website_crm_quick_answer/i18n/ca.po
new file mode 100644
index 0000000000..87e26f49a1
--- /dev/null
+++ b/website_crm_quick_answer/i18n/ca.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# Carles Antolí , 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-11-23 10:22+0000\n"
+"PO-Revision-Date: 2015-11-18 21:15+0000\n"
+"Last-Translator: Carles Antolí \n"
+"Language-Team: Catalan (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr " Benvolgut ${object.partner_id i object.partner_id.name o object.contact_name} ,
Gràcies per posar-se en contacte amb nosaltres!
Hem rebut seva sol·licitud i li respondrem el més aviat possible. p>
Si us plau, sigui pacient. Salutacions cordials.
"
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Venint des del formulari de contacte web"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Resposta ràpida al formulari de contacte web"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Gràcies per la seva sol·licitud"
diff --git a/website_crm_quick_answer/i18n/de.po b/website_crm_quick_answer/i18n/de.po
new file mode 100644
index 0000000000..5cfaadb0ee
--- /dev/null
+++ b/website_crm_quick_answer/i18n/de.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# Rudolf Schnapka , 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-02-25 14:25+0000\n"
+"PO-Revision-Date: 2016-02-23 13:42+0000\n"
+"Last-Translator: Rudolf Schnapka \n"
+"Language-Team: German (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr "\n Geehrter\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Danke, dass Sie uns ansprechen!
\n \n Wir haben Ihre Anfrage erhalten und werden diese so schnell \n es geht beantworten.\n
\n Wir bitte um etwas Geduld, vielen Dank.
\n "
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Vom Webseiten-Kontaktformular stammend"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Schnelle Reaktion auf das Webseiten-Kontaktformular"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Vielen Dank für Ihre Anfrage"
diff --git a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot b/website_crm_quick_answer/i18n/el_GR.po
similarity index 69%
rename from website_crm_quick_answer/i18n/website_crm_quick_answer.pot
rename to website_crm_quick_answer/i18n/el_GR.po
index 7244e48b34..ca728f3c21 100644
--- a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
+++ b/website_crm_quick_answer/i18n/el_GR.po
@@ -1,23 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
-# * website_crm_quick_answer
-#
+# * website_crm_quick_answer
+#
+# Translators:
+# Goutoudis Kostas , 2015
msgid ""
msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
+"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-10-15 16:33+0000\n"
-"PO-Revision-Date: 2015-10-15 16:33+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
+"POT-Creation-Date: 2015-11-28 02:04+0000\n"
+"PO-Revision-Date: 2015-11-24 15:35+0000\n"
+"Last-Translator: Goutoudis Kostas \n"
+"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-website-8-0/language/el_GR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
+"Language: el_GR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
#: model:email.template,body_html:website_crm_quick_answer.email_template
-msgid "\n"
+msgid ""
+"
\n"
" Dear\n"
" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
@@ -44,5 +48,4 @@ msgstr ""
#. module: website_crm_quick_answer
#: model:email.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
-msgstr ""
-
+msgstr "Σας ευχαριστούμε για το αίτημά σας"
diff --git a/website_crm_quick_answer/i18n/es.po b/website_crm_quick_answer/i18n/es.po
index 41456c5395..f06bc814a6 100644
--- a/website_crm_quick_answer/i18n/es.po
+++ b/website_crm_quick_answer/i18n/es.po
@@ -4,21 +4,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
+"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-10-15 18:34+0200\n"
-"PO-Revision-Date: 2015-10-15 18:35+0200\n"
+"POT-Creation-Date: 2017-06-22 18:27+0000\n"
+"PO-Revision-Date: 2017-06-22 20:31+0200\n"
+"Last-Translator: David \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 1.8.5\n"
-"Last-Translator: \n"
"Language: es\n"
+"X-Generator: Poedit 1.8.7.1\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template_quick_response
msgid ""
"\n"
" Dear\n"
@@ -40,10 +41,9 @@ msgstr ""
"
\n"
" ¡Gracias por contactarnos!
\n"
" \n"
-" Hemos recibido su solicitud y será respondida con la mayor prontitud posible.\n"
+" Hemos recibido su solicitud y será contestada a la mayor brevedad posible.\n"
"
\n"
-" Por favor, sea paciente. Un cordial saludo.
\n"
-" "
+" Por favor, sea paciente. Un cordial saludo.
"
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -56,6 +56,7 @@ msgid "Quick response to website contact form"
msgstr "Respuesta rápida al formulario de contacto del sitio web"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template_quick_response
msgid "Thanks for your request"
-msgstr "Gracias por su solicitud"
+msgstr "Gracias por su consulta"
diff --git a/website_crm_quick_answer/i18n/fr.po b/website_crm_quick_answer/i18n/fr.po
new file mode 100644
index 0000000000..5ee28887bb
--- /dev/null
+++ b/website_crm_quick_answer/i18n/fr.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# Christophe CHAUVET , 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-06 02:53+0000\n"
+"PO-Revision-Date: 2016-05-06 08:50+0000\n"
+"Last-Translator: Christophe CHAUVET \n"
+"Language-Team: French (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr "\n Chère\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Merci de nous avoir contacter!
\n \n Nous avons reçu votre demande et nous y répondrons dès que possible.\n
\n Merci d'être patient.Cordialement.
\n "
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "En provenance du formulaire de contact du site"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Une réponse rapide sur le site formulaire de contact"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Nous vous remercions pour votre demande"
diff --git a/website_crm_quick_answer/i18n/it.po b/website_crm_quick_answer/i18n/it.po
new file mode 100644
index 0000000000..a74609c0e6
--- /dev/null
+++ b/website_crm_quick_answer/i18n/it.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# Paolo Valier, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-12 02:17+0000\n"
+"PO-Revision-Date: 2016-03-11 15:08+0000\n"
+"Last-Translator: Paolo Valier\n"
+"Language-Team: Italian (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr "\nGentile\n${object.partner_id and object.partner_id.name or\nobject.contact_name},\n
\nGrazie per averci contattato!
\n\nAbbiamo ricevuto la tua richiesta a cui risponderemo prima possibile.
\nCordiali saluti.
"
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Dal form contatti del sito"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Risposta veloce al form contatti del sito"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Grazie per la tua richiesta di informazioni"
diff --git a/website_crm_quick_answer/i18n/pt_BR.po b/website_crm_quick_answer/i18n/pt_BR.po
new file mode 100644
index 0000000000..a757cf613c
--- /dev/null
+++ b/website_crm_quick_answer/i18n/pt_BR.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# danimaribeiro , 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-03-12 02:17+0000\n"
+"PO-Revision-Date: 2016-03-05 18:09+0000\n"
+"Last-Translator: danimaribeiro \n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr "\n Querido\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Obrigado por nos contactar!
\n \n Nós recebemos sua requisição e vamos responder assim que possível.\n
\n Sinceros cumprimentos.
\n "
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Vindo do formulário de contato no site"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Resposta rápida para o formulário de contato do site"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Obrigado por seu contato"
diff --git a/website_crm_quick_answer/i18n/sl.po b/website_crm_quick_answer/i18n/sl.po
new file mode 100644
index 0000000000..24769aa423
--- /dev/null
+++ b/website_crm_quick_answer/i18n/sl.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+# Translators:
+# Matjaž Mozetič , 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-11-23 10:22+0000\n"
+"PO-Revision-Date: 2015-11-17 06:39+0000\n"
+"Last-Translator: Matjaž Mozetič \n"
+"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-website-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: website_crm_quick_answer
+#: model:email.template,body_html:website_crm_quick_answer.email_template
+msgid ""
+"\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr "\n Spoštovani\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Hvala za vaše zanimanje.
\n \n Prejeli smo vaše povpraševanje, na katerega bomo odgovorili v\n čim krajšem času.\n
\n Hvala za potrpežljivost in lep pozdrav.
\n "
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr "Izhaja iz kontaktnega obrazca spletne strani"
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr "Hiter odgovor na kontaktni obrazec spletne strani"
+
+#. module: website_crm_quick_answer
+#: model:email.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr "Hvala za povpraševanje"
From 5efb2fb4ecc0f15ea39c6ae89301b2d8bd3f3453 Mon Sep 17 00:00:00 2001
From: Rafael Blasco
Date: Wed, 23 Aug 2017 11:48:32 +0200
Subject: [PATCH 06/31] Update README.rst
---
website_crm_quick_answer/README.rst | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/website_crm_quick_answer/README.rst b/website_crm_quick_answer/README.rst
index 9612c908df..a5c46a09b7 100644
--- a/website_crm_quick_answer/README.rst
+++ b/website_crm_quick_answer/README.rst
@@ -41,10 +41,6 @@ Known issues / Roadmap
* The default template is quite basic, you should change that.
-Bug Tracker
-===========
-
-
Bug Tracker
===========
@@ -60,7 +56,7 @@ Contributors
------------
* Rafael Blasco
-* Jairo Llopis
+* Jairo Llopis
* David Vidal
Maintainer
From 92677de091091c903dffcfadb0189dd698500d97 Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza"
Date: Mon, 4 Sep 2017 13:46:47 +0200
Subject: [PATCH 07/31] [IMP] website_crm_quick_answer: Remove unneeded
dependency
---
website_crm_quick_answer/__manifest__.py | 1 -
website_crm_quick_answer/i18n/ca.po | 41 +++++++++-------
website_crm_quick_answer/i18n/de.po | 39 ++++++++++-----
website_crm_quick_answer/i18n/el_GR.po | 34 +++++++------
website_crm_quick_answer/i18n/es.po | 31 ++++++------
website_crm_quick_answer/i18n/fr.po | 39 ++++++++++-----
website_crm_quick_answer/i18n/it.po | 46 +++++++++++-------
website_crm_quick_answer/i18n/pt_BR.po | 39 ++++++++++-----
website_crm_quick_answer/i18n/sl.po | 42 +++++++++++-----
.../i18n/website_crm_quick_answer.pot | 48 +++++++++++++++++++
10 files changed, 253 insertions(+), 107 deletions(-)
create mode 100644 website_crm_quick_answer/i18n/website_crm_quick_answer.pot
diff --git a/website_crm_quick_answer/__manifest__.py b/website_crm_quick_answer/__manifest__.py
index 9446e60019..5d209b9dcc 100644
--- a/website_crm_quick_answer/__manifest__.py
+++ b/website_crm_quick_answer/__manifest__.py
@@ -8,7 +8,6 @@
'category': 'Customer Relationship Management',
'version': '10.0.1.0.0',
'depends': [
- 'marketing_campaign',
'website_crm',
],
'data': [
diff --git a/website_crm_quick_answer/i18n/ca.po b/website_crm_quick_answer/i18n/ca.po
index 87e26f49a1..993196cebe 100644
--- a/website_crm_quick_answer/i18n/ca.po
+++ b/website_crm_quick_answer/i18n/ca.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Carles Antolí , 2015
msgid ""
@@ -11,29 +11,37 @@ msgstr ""
"POT-Creation-Date: 2015-11-23 10:22+0000\n"
"PO-Revision-Date: 2015-11-18 21:15+0000\n"
"Last-Translator: Carles Antolí \n"
-"Language-Team: Catalan (http://www.transifex.com/oca/OCA-website-8-0/language/ca/)\n"
+"Language-Team: Catalan (http://www.transifex.com/oca/OCA-website-8-0/"
+"language/ca/)\n"
+"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
-"
\n"
-" Please, be patient. Best regards.
\n"
-" "
-msgstr " Benvolgut ${object.partner_id i object.partner_id.name o object.contact_name} ,
Gràcies per posar-se en contacte amb nosaltres!
Hem rebut seva sol·licitud i li respondrem el més aviat possible. p>
Si us plau, sigui pacient. Salutacions cordials.
"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+" Benvolgut ${object.partner_id i object.partner_id.name o object."
+"contact_name} ,
Gràcies per posar-se en contacte amb nosaltres! "
+"
Hem rebut seva sol·licitud i li respondrem el més aviat possible. "
+" p>
Si us plau, sigui pacient. Salutacions cordials.
"
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +54,7 @@ msgid "Quick response to website contact form"
msgstr "Resposta ràpida al formulari de contacte web"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Gràcies per la seva sol·licitud"
diff --git a/website_crm_quick_answer/i18n/de.po b/website_crm_quick_answer/i18n/de.po
index 5cfaadb0ee..ff57dabb97 100644
--- a/website_crm_quick_answer/i18n/de.po
+++ b/website_crm_quick_answer/i18n/de.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Rudolf Schnapka , 2016
msgid ""
@@ -11,29 +11,45 @@ msgstr ""
"POT-Creation-Date: 2016-02-25 14:25+0000\n"
"PO-Revision-Date: 2016-02-23 13:42+0000\n"
"Last-Translator: Rudolf Schnapka \n"
-"Language-Team: German (http://www.transifex.com/oca/OCA-website-8-0/language/de/)\n"
+"Language-Team: German (http://www.transifex.com/oca/OCA-website-8-0/language/"
+"de/)\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+" Geehrter\n"
" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
"
\n"
-" Thanks for contacting us!
\n"
+" Danke, dass Sie uns ansprechen!
\n"
" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
+" Wir haben Ihre Anfrage erhalten und werden diese so schnell \n"
+" es geht beantworten.\n"
"
\n"
-" Please, be patient. Best regards.
\n"
+" Wir bitte um etwas Geduld, vielen Dank.
\n"
" "
-msgstr "\n Geehrter\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Danke, dass Sie uns ansprechen!
\n \n Wir haben Ihre Anfrage erhalten und werden diese so schnell \n es geht beantworten.\n
\n Wir bitte um etwas Geduld, vielen Dank.
\n "
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +62,7 @@ msgid "Quick response to website contact form"
msgstr "Schnelle Reaktion auf das Webseiten-Kontaktformular"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Vielen Dank für Ihre Anfrage"
diff --git a/website_crm_quick_answer/i18n/el_GR.po b/website_crm_quick_answer/i18n/el_GR.po
index ca728f3c21..4266b34d52 100644
--- a/website_crm_quick_answer/i18n/el_GR.po
+++ b/website_crm_quick_answer/i18n/el_GR.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Goutoudis Kostas , 2015
msgid ""
@@ -11,28 +11,31 @@ msgstr ""
"POT-Creation-Date: 2015-11-28 02:04+0000\n"
"PO-Revision-Date: 2015-11-24 15:35+0000\n"
"Last-Translator: Goutoudis Kostas \n"
-"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-website-8-0/language/el_GR/)\n"
+"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-website-8-0/"
+"language/el_GR/)\n"
+"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: el_GR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
msgid ""
"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
-"
\n"
-" Please, be patient. Best regards.
\n"
-" "
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
msgstr ""
#. module: website_crm_quick_answer
@@ -46,6 +49,7 @@ msgid "Quick response to website contact form"
msgstr ""
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Σας ευχαριστούμε για το αίτημά σας"
diff --git a/website_crm_quick_answer/i18n/es.po b/website_crm_quick_answer/i18n/es.po
index f06bc814a6..4a271d9745 100644
--- a/website_crm_quick_answer/i18n/es.po
+++ b/website_crm_quick_answer/i18n/es.po
@@ -10,29 +10,31 @@ msgstr ""
"PO-Revision-Date: 2017-06-22 20:31+0200\n"
"Last-Translator: David \n"
"Language-Team: \n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"Language: es\n"
"X-Generator: Poedit 1.8.7.1\n"
#. module: website_crm_quick_answer
#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
-#: model:mail.template,body_html:website_crm_quick_answer.email_template_quick_response
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
-"
\n"
-" Please, be patient. Best regards.
\n"
-" "
+" \n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
msgstr ""
"\n"
" Estimado/a\n"
@@ -41,7 +43,8 @@ msgstr ""
"
\n"
" ¡Gracias por contactarnos!
\n"
" \n"
-" Hemos recibido su solicitud y será contestada a la mayor brevedad posible.\n"
+" Hemos recibido su solicitud y será contestada a la mayor brevedad "
+"posible.\n"
"
\n"
" Por favor, sea paciente. Un cordial saludo.
"
@@ -57,6 +60,6 @@ msgstr "Respuesta rápida al formulario de contacto del sitio web"
#. module: website_crm_quick_answer
#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
-#: model:mail.template,subject:website_crm_quick_answer.email_template_quick_response
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Gracias por su consulta"
diff --git a/website_crm_quick_answer/i18n/fr.po b/website_crm_quick_answer/i18n/fr.po
index 5ee28887bb..e24f710144 100644
--- a/website_crm_quick_answer/i18n/fr.po
+++ b/website_crm_quick_answer/i18n/fr.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Christophe CHAUVET , 2016
msgid ""
@@ -11,29 +11,45 @@ msgstr ""
"POT-Creation-Date: 2016-05-06 02:53+0000\n"
"PO-Revision-Date: 2016-05-06 08:50+0000\n"
"Last-Translator: Christophe CHAUVET \n"
-"Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/fr/)\n"
+"Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/"
+"fr/)\n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+" Chère\n"
" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
"
\n"
-" Thanks for contacting us!
\n"
+" Merci de nous avoir contacter!
\n"
" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
+" Nous avons reçu votre demande et nous y répondrons dès que "
+"possible.\n"
"
\n"
-" Please, be patient. Best regards.
\n"
+" Merci d'être patient.Cordialement.
\n"
" "
-msgstr "\n Chère\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Merci de nous avoir contacter!
\n \n Nous avons reçu votre demande et nous y répondrons dès que possible.\n
\n Merci d'être patient.Cordialement.
\n "
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +62,7 @@ msgid "Quick response to website contact form"
msgstr "Une réponse rapide sur le site formulaire de contact"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Nous vous remercions pour votre demande"
diff --git a/website_crm_quick_answer/i18n/it.po b/website_crm_quick_answer/i18n/it.po
index a74609c0e6..b8f6a64216 100644
--- a/website_crm_quick_answer/i18n/it.po
+++ b/website_crm_quick_answer/i18n/it.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Paolo Valier, 2016
msgid ""
@@ -11,29 +11,42 @@ msgstr ""
"POT-Creation-Date: 2016-03-12 02:17+0000\n"
"PO-Revision-Date: 2016-03-11 15:08+0000\n"
"Last-Translator: Paolo Valier\n"
-"Language-Team: Italian (http://www.transifex.com/oca/OCA-website-8-0/language/it/)\n"
+"Language-Team: Italian (http://www.transifex.com/oca/OCA-website-8-0/"
+"language/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: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
-"
\n"
-" Please, be patient. Best regards.
\n"
-" "
-msgstr "\nGentile\n${object.partner_id and object.partner_id.name or\nobject.contact_name},\n
\nGrazie per averci contattato!
\n\nAbbiamo ricevuto la tua richiesta a cui risponderemo prima possibile.
\nCordiali saluti.
"
+" \n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+"Gentile\n"
+"${object.partner_id and object.partner_id.name or\n"
+"object.contact_name},\n"
+"
\n"
+"Grazie per averci contattato!
\n"
+"\n"
+"Abbiamo ricevuto la tua richiesta a cui risponderemo prima possibile.
\n"
+"Cordiali saluti.
"
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +59,7 @@ msgid "Quick response to website contact form"
msgstr "Risposta veloce al form contatti del sito"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Grazie per la tua richiesta di informazioni"
diff --git a/website_crm_quick_answer/i18n/pt_BR.po b/website_crm_quick_answer/i18n/pt_BR.po
index a757cf613c..100ec20348 100644
--- a/website_crm_quick_answer/i18n/pt_BR.po
+++ b/website_crm_quick_answer/i18n/pt_BR.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# danimaribeiro , 2016
msgid ""
@@ -11,29 +11,45 @@ msgstr ""
"POT-Creation-Date: 2016-03-12 02:17+0000\n"
"PO-Revision-Date: 2016-03-05 18:09+0000\n"
"Last-Translator: danimaribeiro \n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-website-8-0/language/pt_BR/)\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-"
+"website-8-0/language/pt_BR/)\n"
+"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+" Querido\n"
" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
"
\n"
-" Thanks for contacting us!
\n"
+" Obrigado por nos contactar!
\n"
" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
+" Nós recebemos sua requisição e vamos responder assim que "
+"possível.\n"
"
\n"
-" Please, be patient. Best regards.
\n"
+" Sinceros cumprimentos.
\n"
" "
-msgstr "\n Querido\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Obrigado por nos contactar!
\n \n Nós recebemos sua requisição e vamos responder assim que possível.\n
\n Sinceros cumprimentos.
\n "
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +62,7 @@ msgid "Quick response to website contact form"
msgstr "Resposta rápida para o formulário de contato do site"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Obrigado por seu contato"
diff --git a/website_crm_quick_answer/i18n/sl.po b/website_crm_quick_answer/i18n/sl.po
index 24769aa423..de8192415a 100644
--- a/website_crm_quick_answer/i18n/sl.po
+++ b/website_crm_quick_answer/i18n/sl.po
@@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_crm_quick_answer
-#
+#
# Translators:
# Matjaž Mozetič , 2015
msgid ""
@@ -11,29 +11,46 @@ msgstr ""
"POT-Creation-Date: 2015-11-23 10:22+0000\n"
"PO-Revision-Date: 2015-11-17 06:39+0000\n"
"Last-Translator: Matjaž Mozetič \n"
-"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-website-8-0/language/sl/)\n"
+"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-website-8-0/"
+"language/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: website_crm_quick_answer
-#: model:email.template,body_html:website_crm_quick_answer.email_template
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+#, fuzzy
msgid ""
"\n"
-" Dear\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as "
+"soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+"\n"
+" Spoštovani\n"
" ${object.partner_id and object.partner_id.name or\n"
" object.contact_name},\n"
"
\n"
-" Thanks for contacting us!
\n"
+" Hvala za vaše zanimanje.
\n"
" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
+" Prejeli smo vaše povpraševanje, na katerega bomo odgovorili v\n"
+" čim krajšem času.\n"
"
\n"
-" Please, be patient. Best regards.
\n"
+" Hvala za potrpežljivost in lep pozdrav.
\n"
" "
-msgstr "\n Spoštovani\n ${object.partner_id and object.partner_id.name or\n object.contact_name},\n
\n Hvala za vaše zanimanje.
\n \n Prejeli smo vaše povpraševanje, na katerega bomo odgovorili v\n čim krajšem času.\n
\n Hvala za potrpežljivost in lep pozdrav.
\n "
#. module: website_crm_quick_answer
#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
@@ -46,6 +63,7 @@ msgid "Quick response to website contact form"
msgstr "Hiter odgovor na kontaktni obrazec spletne strani"
#. module: website_crm_quick_answer
-#: model:email.template,subject:website_crm_quick_answer.email_template
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Hvala za povpraševanje"
diff --git a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
new file mode 100644
index 0000000000..cd6892e301
--- /dev/null
+++ b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
@@ -0,0 +1,48 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_crm_quick_answer
+#
+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: website_crm_quick_answer
+#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
+#: model:mail.template,body_html:website_crm_quick_answer.email_template
+msgid "\n"
+" Dear\n"
+" ${object.partner_id and object.partner_id.name or\n"
+" object.contact_name},\n"
+"
\n"
+" Thanks for contacting us!
\n"
+" \n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+" Please, be patient. Best regards.
\n"
+" "
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
+msgid "Coming from the website contact form"
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+msgid "Quick response to website contact form"
+msgstr ""
+
+#. module: website_crm_quick_answer
+#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
+#: model:mail.template,subject:website_crm_quick_answer.email_template
+msgid "Thanks for your request"
+msgstr ""
+
From 440416fea240a03f61bc18b4d20781798664b692 Mon Sep 17 00:00:00 2001
From: Cristina Martin
Date: Wed, 27 Feb 2019 19:50:47 +0100
Subject: [PATCH 08/31] [12.0][MIG] website_crm_quick_answer: Migration to v12
---
website_crm_quick_answer/README.rst | 91 ++--
website_crm_quick_answer/__manifest__.py | 12 +-
website_crm_quick_answer/data/automation.xml | 56 ---
.../data/base_automation_data.xml | 42 ++
website_crm_quick_answer/i18n/ca.po | 36 +-
website_crm_quick_answer/i18n/de.po | 36 +-
website_crm_quick_answer/i18n/el_GR.po | 33 +-
website_crm_quick_answer/i18n/es.po | 36 +-
website_crm_quick_answer/i18n/fr.po | 36 +-
website_crm_quick_answer/i18n/it.po | 36 +-
website_crm_quick_answer/i18n/pt_BR.po | 36 +-
website_crm_quick_answer/i18n/sl.po | 36 +-
.../i18n/website_crm_quick_answer.pot | 34 +-
website_crm_quick_answer/readme/CONFIGURE.rst | 10 +
.../readme/CONTRIBUTORS.rst | 7 +
.../readme/DESCRIPTION.rst | 3 +
website_crm_quick_answer/readme/USAGE.rst | 3 +
.../static/description/index.html | 448 ++++++++++++++++++
18 files changed, 726 insertions(+), 265 deletions(-)
delete mode 100644 website_crm_quick_answer/data/automation.xml
create mode 100644 website_crm_quick_answer/data/base_automation_data.xml
create mode 100755 website_crm_quick_answer/readme/CONFIGURE.rst
create mode 100755 website_crm_quick_answer/readme/CONTRIBUTORS.rst
create mode 100755 website_crm_quick_answer/readme/DESCRIPTION.rst
create mode 100644 website_crm_quick_answer/readme/USAGE.rst
create mode 100644 website_crm_quick_answer/static/description/index.html
diff --git a/website_crm_quick_answer/README.rst b/website_crm_quick_answer/README.rst
index a5c46a09b7..6062ee2a42 100644
--- a/website_crm_quick_answer/README.rst
+++ b/website_crm_quick_answer/README.rst
@@ -1,75 +1,102 @@
-.. 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
-
=====================================
Quick answer for website contact form
=====================================
+.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ !! 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%2Fwebsite-lightgray.png?logo=github
+ :target: https://github.com/OCA/website/tree/12.0/website_crm_quick_answer
+ :alt: OCA/website
+.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
+ :target: https://translation.odoo-community.org/projects/website-12-0/website-12-0-website_crm_quick_answer
+ :alt: Translate me on Weblate
+.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
+ :target: https://runbot.odoo-community.org/runbot/186/12.0
+ :alt: Try me on Runbot
+
+|badge1| |badge2| |badge3| |badge4| |badge5|
+
This module was written to extend the functionality of the website contact form
to support sending the interested contact an automatic welcome email and allow
you to customize it.
+**Table of contents**
+
+.. contents::
+ :local:
+
Configuration
=============
To configure this module, you need to:
-* Go to *Settings > Technical > Automation > Automated actions > Quick response
- to website contact form* and edit anything there.
+#. Go to **Settings > Technical > Automation > Automated actions > Quick response
+ to website contact form** and edit anything there.
Quicker way to just change the email template (something that most likely you
will want to do):
-* Go to *Settings > Technical > Email > Templates*
-* Edit the template called *Quick response to website contact form*.
+#. Go to **Settings > Technical > Email > Templates**
+#. Edit the template called *Quick response to website contact form*.
Usage
=====
To use this module, you need to:
-* Have an email address in your main company. It will be used as sender
- address.
-
-.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
- :alt: Try me on Runbot
- :target: https://runbot.odoo-community.org/runbot/186/10.0
-
-Known issues / Roadmap
-======================
-
-* The default template is quite basic, you should change that.
+Have an email address in your main company. It will be used as sender address.
Bug Tracker
===========
-Bugs are tracked on `GitHub Issues
-`_. In case of trouble, please
-check there if your issue has already been reported. If you spotted it first,
-help us smash it by providing detailed and welcomed feedback.
+Bugs are tracked on `GitHub Issues `_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us smashing it by providing a detailed and welcomed
+`feedback `_.
+
+Do not contact contributors directly about support or help with technical issues.
Credits
=======
+Authors
+~~~~~~~
+
+* Tecnativa
+
Contributors
-------------
+~~~~~~~~~~~~
+
+
+* `Tecnativa `__:
-* Rafael Blasco
-* Jairo Llopis
-* David Vidal
+ * Rafael Blasco
+ * Jairo Llopis
+ * David Vidal
+ * Cristina Martin R.
-Maintainer
-----------
+Maintainers
+~~~~~~~~~~~
+
+This module is maintained by the OCA.
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
-This module is maintained by the OCA.
-
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
-To contribute to this module, please visit http://odoo-community.org.
+This module is part of the `OCA/website `_ project on GitHub.
+
+You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/website_crm_quick_answer/__manifest__.py b/website_crm_quick_answer/__manifest__.py
index 5d209b9dcc..9c1cea982c 100644
--- a/website_crm_quick_answer/__manifest__.py
+++ b/website_crm_quick_answer/__manifest__.py
@@ -1,21 +1,23 @@
-# -*- coding: utf-8 -*-
# Copyright 2016 Tecnativa - Jairo Llopis
# Copyright 2017 Tecnativa - David Vidal
+# Copyright 2019 Tecnativa - Cristina Martin R.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': "Quick answer for website contact form",
"summary": "Add an automatic answer for contacts asking for info",
- 'category': 'Customer Relationship Management',
- 'version': '10.0.1.0.0',
+ 'category': 'Website',
+ 'version': '12.0.1.0.0',
+ 'website': 'https://github.com/OCA/website',
'depends': [
'website_crm',
+ 'base_automation',
],
'data': [
- "data/automation.xml",
+ "data/base_automation_data.xml",
],
'author': 'Tecnativa, '
'Odoo Community Association (OCA)',
- 'website': 'https://www.tecnativa.com',
'license': 'AGPL-3',
+ 'application': False,
'installable': True,
}
diff --git a/website_crm_quick_answer/data/automation.xml b/website_crm_quick_answer/data/automation.xml
deleted file mode 100644
index 1046edad40..0000000000
--- a/website_crm_quick_answer/data/automation.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
- Quick response to website contact form
-
-
- ${object.company_id.email}
- ${object.env.context.get("lang")}
- Thanks for your request
-
-
- Dear
- ${object.partner_id and object.partner_id.name or
- object.contact_name},
-
- Thanks for contacting us!
-
- We have received your request and will answer you as soon as
- possible.
-
- Please, be patient. Best regards.
-
-
-
-
-
-
-
- Coming from the website contact form
-
- crm.lead
-
-
-
-
- Quick response to website contact form
-
- email
-
-
-
-
- Quick response to website contact form
-
-
- on_create
-
-
-
-
-
diff --git a/website_crm_quick_answer/data/base_automation_data.xml b/website_crm_quick_answer/data/base_automation_data.xml
new file mode 100644
index 0000000000..ed0b4a0cf8
--- /dev/null
+++ b/website_crm_quick_answer/data/base_automation_data.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+ Quick response to website contact form
+
+
+ ${object.company_id.email}
+ ${object.env.context.get("lang")}
+ Thanks for your request
+
+ Dear
${object.partner_id and object.partner_id.name or object.contact_name},
+
+
+
Thanks for contacting us!
+
+ We have received your request and will answer you as soon as
+ possible.
+
+
Please, be patient. Best regards.
+
Thanks,
+
+
+
+
+
+
+
+
+
+ Quick response to website contact form
+
+ email
+ on_create
+
+
+ [["medium_id.name","=","Website"]]
+
+
+
+
diff --git a/website_crm_quick_answer/i18n/ca.po b/website_crm_quick_answer/i18n/ca.po
index 993196cebe..ec465d697a 100644
--- a/website_crm_quick_answer/i18n/ca.po
+++ b/website_crm_quick_answer/i18n/ca.po
@@ -20,22 +20,22 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
" Benvolgut ${object.partner_id i object.partner_id.name o object."
@@ -44,17 +44,15 @@ msgstr ""
" p>
Si us plau, sigui pacient. Salutacions cordials.
"
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Venint des del formulari de contacte web"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Resposta ràpida al formulari de contacte web"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Gràcies per la seva sol·licitud"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Venint des del formulari de contacte web"
diff --git a/website_crm_quick_answer/i18n/de.po b/website_crm_quick_answer/i18n/de.po
index ff57dabb97..243f23a739 100644
--- a/website_crm_quick_answer/i18n/de.po
+++ b/website_crm_quick_answer/i18n/de.po
@@ -20,22 +20,22 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -52,17 +52,15 @@ msgstr ""
" "
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Vom Webseiten-Kontaktformular stammend"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Schnelle Reaktion auf das Webseiten-Kontaktformular"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Vielen Dank für Ihre Anfrage"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Vom Webseiten-Kontaktformular stammend"
diff --git a/website_crm_quick_answer/i18n/el_GR.po b/website_crm_quick_answer/i18n/el_GR.po
index 4266b34d52..07f51957da 100644
--- a/website_crm_quick_answer/i18n/el_GR.po
+++ b/website_crm_quick_answer/i18n/el_GR.po
@@ -20,36 +20,31 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
msgid ""
-"
\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr ""
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr ""
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Σας ευχαριστούμε για το αίτημά σας"
diff --git a/website_crm_quick_answer/i18n/es.po b/website_crm_quick_answer/i18n/es.po
index 4a271d9745..80588a54a8 100644
--- a/website_crm_quick_answer/i18n/es.po
+++ b/website_crm_quick_answer/i18n/es.po
@@ -18,22 +18,22 @@ msgstr ""
"X-Generator: Poedit 1.8.7.1\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -49,17 +49,15 @@ msgstr ""
"
Por favor, sea paciente. Un cordial saludo.
"
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Procedentes del formulario de contacto del sitio web"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Respuesta rápida al formulario de contacto del sitio web"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Gracias por su consulta"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Procedentes del formulario de contacto del sitio web"
diff --git a/website_crm_quick_answer/i18n/fr.po b/website_crm_quick_answer/i18n/fr.po
index e24f710144..6952fbd4b7 100644
--- a/website_crm_quick_answer/i18n/fr.po
+++ b/website_crm_quick_answer/i18n/fr.po
@@ -20,22 +20,22 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -52,17 +52,15 @@ msgstr ""
" "
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "En provenance du formulaire de contact du site"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Une réponse rapide sur le site formulaire de contact"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Nous vous remercions pour votre demande"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "En provenance du formulaire de contact du site"
diff --git a/website_crm_quick_answer/i18n/it.po b/website_crm_quick_answer/i18n/it.po
index b8f6a64216..89728b2558 100644
--- a/website_crm_quick_answer/i18n/it.po
+++ b/website_crm_quick_answer/i18n/it.po
@@ -20,22 +20,22 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"
\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -49,17 +49,15 @@ msgstr ""
"
Cordiali saluti.
"
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Dal form contatti del sito"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Risposta veloce al form contatti del sito"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Grazie per la tua richiesta di informazioni"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Dal form contatti del sito"
diff --git a/website_crm_quick_answer/i18n/pt_BR.po b/website_crm_quick_answer/i18n/pt_BR.po
index 100ec20348..32927770a0 100644
--- a/website_crm_quick_answer/i18n/pt_BR.po
+++ b/website_crm_quick_answer/i18n/pt_BR.po
@@ -20,22 +20,22 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -52,17 +52,15 @@ msgstr ""
" "
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Vindo do formulário de contato no site"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Resposta rápida para o formulário de contato do site"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Obrigado por seu contato"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Vindo do formulário de contato no site"
diff --git a/website_crm_quick_answer/i18n/sl.po b/website_crm_quick_answer/i18n/sl.po
index de8192415a..f33b80e216 100644
--- a/website_crm_quick_answer/i18n/sl.po
+++ b/website_crm_quick_answer/i18n/sl.po
@@ -21,22 +21,22 @@ msgstr ""
"%100==4 ? 2 : 3);\n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
#, fuzzy
msgid ""
-"
\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as "
+"
Dear
${object.partner_id and object.partner_id.name or object."
+"contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as "
"soon as\n"
-" possible.\n"
-"
\n"
-"
Please, be patient. Best regards.
\n"
+" possible.\n"
+" \n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
"\n"
@@ -53,17 +53,15 @@ msgstr ""
" "
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr "Izhaja iz kontaktnega obrazca spletne strani"
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr "Hiter odgovor na kontaktni obrazec spletne strani"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr "Hvala za povpraševanje"
+
+#~ msgid "Coming from the website contact form"
+#~ msgstr "Izhaja iz kontaktnega obrazca spletne strani"
diff --git a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
index cd6892e301..147e703609 100644
--- a/website_crm_quick_answer/i18n/website_crm_quick_answer.pot
+++ b/website_crm_quick_answer/i18n/website_crm_quick_answer.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,34 +14,28 @@ msgstr ""
"Plural-Forms: \n"
#. module: website_crm_quick_answer
-#: model:ir.actions.server,body_html:website_crm_quick_answer.server_action
#: model:mail.template,body_html:website_crm_quick_answer.email_template
-msgid "
\n"
-" Dear\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Thanks for contacting us!
\n"
-" \n"
-" We have received your request and will answer you as soon as\n"
-" possible.\n"
-"
\n"
-" Please, be patient. Best regards.
\n"
+msgid "Dear
${object.partner_id and object.partner_id.name or object.contact_name},\n"
+"
\n"
+"
\n"
+"
Thanks for contacting us!
\n"
+"
\n"
+" We have received your request and will answer you as soon as\n"
+" possible.\n"
+"
\n"
+"
Please, be patient. Best regards.
\n"
+"
Thanks,
\n"
+"
\n"
" "
msgstr ""
#. module: website_crm_quick_answer
-#: model:ir.filters,name:website_crm_quick_answer.website_form_leads_filter
-msgid "Coming from the website contact form"
-msgstr ""
-
-#. module: website_crm_quick_answer
-#: model:ir.actions.server,name:website_crm_quick_answer.server_action
+#: model:base.automation,name:website_crm_quick_answer.automated_action
+#: model:ir.actions.server,name:website_crm_quick_answer.automated_action_ir_actions_server
msgid "Quick response to website contact form"
msgstr ""
#. module: website_crm_quick_answer
-#: model:ir.actions.server,subject:website_crm_quick_answer.server_action
#: model:mail.template,subject:website_crm_quick_answer.email_template
msgid "Thanks for your request"
msgstr ""
diff --git a/website_crm_quick_answer/readme/CONFIGURE.rst b/website_crm_quick_answer/readme/CONFIGURE.rst
new file mode 100755
index 0000000000..fa23f31923
--- /dev/null
+++ b/website_crm_quick_answer/readme/CONFIGURE.rst
@@ -0,0 +1,10 @@
+To configure this module, you need to:
+
+#. Go to **Settings > Technical > Automation > Automated actions > Quick response
+ to website contact form** and edit anything there.
+
+Quicker way to just change the email template (something that most likely you
+will want to do):
+
+#. Go to **Settings > Technical > Email > Templates**
+#. Edit the template called *Quick response to website contact form*.
diff --git a/website_crm_quick_answer/readme/CONTRIBUTORS.rst b/website_crm_quick_answer/readme/CONTRIBUTORS.rst
new file mode 100755
index 0000000000..40e97b7642
--- /dev/null
+++ b/website_crm_quick_answer/readme/CONTRIBUTORS.rst
@@ -0,0 +1,7 @@
+
+* `Tecnativa `__:
+
+ * Rafael Blasco
+ * Jairo Llopis
+ * David Vidal
+ * Cristina Martin R.
diff --git a/website_crm_quick_answer/readme/DESCRIPTION.rst b/website_crm_quick_answer/readme/DESCRIPTION.rst
new file mode 100755
index 0000000000..8079c76639
--- /dev/null
+++ b/website_crm_quick_answer/readme/DESCRIPTION.rst
@@ -0,0 +1,3 @@
+This module was written to extend the functionality of the website contact form
+to support sending the interested contact an automatic welcome email and allow
+you to customize it.
diff --git a/website_crm_quick_answer/readme/USAGE.rst b/website_crm_quick_answer/readme/USAGE.rst
new file mode 100644
index 0000000000..d34f690d2b
--- /dev/null
+++ b/website_crm_quick_answer/readme/USAGE.rst
@@ -0,0 +1,3 @@
+To use this module, you need to:
+
+Have an email address in your main company. It will be used as sender address.
diff --git a/website_crm_quick_answer/static/description/index.html b/website_crm_quick_answer/static/description/index.html
new file mode 100644
index 0000000000..f8197cd903
--- /dev/null
+++ b/website_crm_quick_answer/static/description/index.html
@@ -0,0 +1,448 @@
+
+
+
+
+
+
+Quick answer for website contact form
+
+
+
+
+
+
From 8a6bb64e7a7b9f8b84fdbc9506f1ab14552bd677 Mon Sep 17 00:00:00 2001
From: jcleonard2018
Date: Sun, 28 Jul 2019 09:55:43 +0000
Subject: [PATCH 09/31] Translated using Weblate (French)
Currently translated at 100.0% (3 of 3 strings)
Translation: website-12.0/website-12.0-website_crm_quick_answer
Translate-URL: https://translation.odoo-community.org/projects/website-12-0/website-12-0-website_crm_quick_answer/fr/
---
website_crm_quick_answer/i18n/fr.po | 33 ++++++++++---------
.../static/description/index.html | 2 +-
2 files changed, 18 insertions(+), 17 deletions(-)
diff --git a/website_crm_quick_answer/i18n/fr.po b/website_crm_quick_answer/i18n/fr.po
index 6952fbd4b7..ef807845cf 100644
--- a/website_crm_quick_answer/i18n/fr.po
+++ b/website_crm_quick_answer/i18n/fr.po
@@ -9,19 +9,19 @@ msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-06 02:53+0000\n"
-"PO-Revision-Date: 2016-05-06 08:50+0000\n"
-"Last-Translator: Christophe CHAUVET \n"
+"PO-Revision-Date: 2019-07-28 11:47+0000\n"
+"Last-Translator: jcleonard2018 \n"
"Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/"
"fr/)\n"
"Language: fr\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.7.1\n"
#. module: website_crm_quick_answer
#: model:mail.template,body_html:website_crm_quick_answer.email_template
-#, fuzzy
msgid ""
"Dear ${object.partner_id and object.partner_id.name or object."
"contact_name},\n"
@@ -38,18 +38,19 @@ msgid ""
"
\n"
" "
msgstr ""
-"\n"
-" Chère\n"
-" ${object.partner_id and object.partner_id.name or\n"
-" object.contact_name},\n"
-"
\n"
-" Merci de nous avoir contacter!
\n"
-" \n"
-" Nous avons reçu votre demande et nous y répondrons dès que "
-"possible.\n"
-"
\n"
-" Merci d'être patient.Cordialement.
\n"
-" "
+"Dear
${object.partner_id and object.partner_id.name or "
+"object.contact_name},\n"
+"
\n"
+"
\n"
+"
Merci de nous avoir contacter!
\n"
+"
\n"
+" Nous avons reçu votre demande et nous y répondrons dès "
+"que possible.\n"
+"
\n"
+"
Merci d'être patient.Cordialement.
\n"
+"
\n"
+"
\n"
+" "
#. module: website_crm_quick_answer
#: model:base.automation,name:website_crm_quick_answer.automated_action
diff --git a/website_crm_quick_answer/static/description/index.html b/website_crm_quick_answer/static/description/index.html
index f8197cd903..1005ea1ad9 100644
--- a/website_crm_quick_answer/static/description/index.html
+++ b/website_crm_quick_answer/static/description/index.html
@@ -3,7 +3,7 @@
-
+
Quick answer for website contact form
-
From e65104e52ac10a2abecdd7231a05f37a79fb468e Mon Sep 17 00:00:00 2001
From: Weblate
Date: Mon, 30 Mar 2026 13:53:11 +0000
Subject: [PATCH 31/31] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: website-18.0/website-18.0-website_whatsapp
Translate-URL: https://translation.odoo-community.org/projects/website-18-0/website-18-0-website_whatsapp/
---
website_whatsapp/i18n/es.po | 21 ++++++++++++---------
website_whatsapp/i18n/it.po | 21 ++++++++++++---------
2 files changed, 24 insertions(+), 18 deletions(-)
diff --git a/website_whatsapp/i18n/es.po b/website_whatsapp/i18n/es.po
index b08aea3503..b007b79feb 100644
--- a/website_whatsapp/i18n/es.po
+++ b/website_whatsapp/i18n/es.po
@@ -16,15 +16,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.4\n"
-#. module: website_whatsapp
-#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
-msgid ""
-""
-msgstr ""
-""
-
#. module: website_whatsapp
#: model:ir.model,name:website_whatsapp.model_res_config_settings
msgid "Config Settings"
@@ -61,6 +52,11 @@ msgstr "URL de seguimiento"
msgid "Use Whatsapp"
msgstr "Utilizar Whatsapp"
+#. module: website_whatsapp
+#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
+msgid "Values set here are website-specific."
+msgstr ""
+
#. module: website_whatsapp
#: model:ir.model,name:website_whatsapp.model_website
msgid "Website"
@@ -81,3 +77,10 @@ msgstr "Número de WhatsApp"
#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
msgid "You must add the mobile number with the country prefix"
msgstr "Debes añadir el número de móvil con el prefijo del país"
+
+#~ msgid ""
+#~ ""
+#~ msgstr ""
+#~ ""
diff --git a/website_whatsapp/i18n/it.po b/website_whatsapp/i18n/it.po
index 61ee7cad03..06e9c1d2b3 100644
--- a/website_whatsapp/i18n/it.po
+++ b/website_whatsapp/i18n/it.po
@@ -16,15 +16,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.6.2\n"
-#. module: website_whatsapp
-#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
-msgid ""
-""
-msgstr ""
-""
-
#. module: website_whatsapp
#: model:ir.model,name:website_whatsapp.model_res_config_settings
msgid "Config Settings"
@@ -61,6 +52,11 @@ msgstr "Traccia URL"
msgid "Use Whatsapp"
msgstr "Utilizza Whatsapp"
+#. module: website_whatsapp
+#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
+msgid "Values set here are website-specific."
+msgstr ""
+
#. module: website_whatsapp
#: model:ir.model,name:website_whatsapp.model_website
msgid "Website"
@@ -82,3 +78,10 @@ msgstr "Numero Whatsapp"
msgid "You must add the mobile number with the country prefix"
msgstr ""
"È necessario aggiungere il numero del cellulare con il prefisso della nazione"
+
+#~ msgid ""
+#~ ""
+#~ msgstr ""
+#~ ""