diff --git a/README.md b/README.md index c4f4747ed6..235b870b72 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ addon | version | maintainers | summary [website_cf_turnstile_login](website_cf_turnstile_login/) | 18.0.1.0.0 | adasatorres | Add Cloudflare Turnstile captcha to login form [website_cookiebot](website_cookiebot/) | 18.0.1.0.0 | | Ask for cookies consent connecting with Cookiebot [website_cookiefirst](website_cookiefirst/) | 18.0.2.0.0 | | Cookiefirst integration +[website_crm_quick_answer](website_crm_quick_answer/) | 18.0.1.0.0 | | Add an automatic answer for contacts asking for info [website_form_require_legal](website_form_require_legal/) | 18.0.1.0.0 | | Add possibility to require confirm legal terms. [website_forum_subscription](website_forum_subscription/) | 18.0.1.0.0 | | Adds a button to allow subscription from the website [website_google_tag_manager](website_google_tag_manager/) | 18.0.1.0.0 | | Add support for Google Tag Manager diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index 50478778f8..8bf8a5b89a 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,10 +1,11 @@ [project] name = "odoo-addons-oca-website" -version = "18.0.20260210.0" +version = "18.0.20260330.0" dependencies = [ "odoo-addon-website_cf_turnstile_login==18.0.*", "odoo-addon-website_cookiebot==18.0.*", "odoo-addon-website_cookiefirst==18.0.*", + "odoo-addon-website_crm_quick_answer==18.0.*", "odoo-addon-website_form_require_legal==18.0.*", "odoo-addon-website_forum_subscription==18.0.*", "odoo-addon-website_google_tag_manager==18.0.*", diff --git a/website_crm_quick_answer/README.rst b/website_crm_quick_answer/README.rst new file mode 100644 index 0000000000..eb80ff5dfb --- /dev/null +++ b/website_crm_quick_answer/README.rst @@ -0,0 +1,119 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +===================================== +Quick answer for website contact form +===================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:c5ce0cd4859c4f74375db54b16cbfed51ad2c53fb87ae9573f43249f83cf99c3 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/license-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/18.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-18-0/website-18-0-website_crm_quick_answer + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=18.0 + :alt: Try me on Runboat + +|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: + +1. Have the action of the submit button on the website contact form + configured to create a new opportunity. +2. Go to **Settings > Technical > Automation > Automation Rules > 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): + +1. Go to **Settings > Technical > Email > Templates** +2. 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. + +Complete the contact form on the website and send it to us. + +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 to smash 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 + - Cristina Martin R. + - Pilar Vargas + +- `Sygel Technology `__: + + - Harald Panten + - Manuel Regidor + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/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/__init__.py b/website_crm_quick_answer/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/website_crm_quick_answer/__manifest__.py b/website_crm_quick_answer/__manifest__.py new file mode 100644 index 0000000000..7bb8a1d7e8 --- /dev/null +++ b/website_crm_quick_answer/__manifest__.py @@ -0,0 +1,17 @@ +# 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": "Website", + "version": "18.0.1.0.0", + "website": "https://github.com/OCA/website", + "depends": ["website_crm", "base_automation"], + "data": ["data/base_automation_data.xml"], + "author": "Tecnativa, " "Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, +} 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..13499e442c --- /dev/null +++ b/website_crm_quick_answer/data/base_automation_data.xml @@ -0,0 +1,43 @@ + + + + Quick response to website contact form + + + {{ object.company_id.email }} + {{ ctx.get("lang") or object.partner_id.lang or object.company_id.partner_id.lang or object.env.user.lang }} + Thanks for your request + +
Dear +
+
+

Thanks for contacting us!

+

+ We have received your request and will answer you as soon as + possible. +

+

Please, be patient. Best regards.

+

Thanks,

+
+
+
+ + Send email response + + mail_post + + + + 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..84d035fb77 --- /dev/null +++ b/website_crm_quick_answer/i18n/es.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_quick_answer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-01-27 17:44+0000\n" +"Last-Translator: David Vidal \n" +"Language-Team: none\n" +"Language: es\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" +"X-Generator: Weblate 4.14.1\n" + +#. module: website_crm_quick_answer +#: model:mail.template,body_html:website_crm_quick_answer.email_template +msgid "" +"
Dear \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:base.automation,name:website_crm_quick_answer.automated_action +#: model:mail.template,name:website_crm_quick_answer.email_template +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,name:website_crm_quick_answer.send_email_action +msgid "Send email: Quick response to website contact form" +msgstr "" + +#. module: website_crm_quick_answer +#: model:mail.template,subject:website_crm_quick_answer.email_template +msgid "Thanks for your request" +msgstr "Gracias por su consulta" + +#~ msgid "" +#~ "
Dear \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 "" +#~ "
Estimado \n" +#~ "
\n" +#~ "
\n" +#~ "

¡Gracias por contactarnos!

\n" +#~ "

\n" +#~ " Hemos recibido su solicitud y le responderemos " +#~ "tan pronto como sea\n" +#~ " posible.\n" +#~ "

\n" +#~ "

Por favor, tenga paciencia. Saludos cordiales.\n" +#~ "

Gracias,

\n" +#~ "
\n" +#~ " " diff --git a/website_crm_quick_answer/i18n/it.po b/website_crm_quick_answer/i18n/it.po new file mode 100644 index 0000000000..aa51dc377d --- /dev/null +++ b/website_crm_quick_answer/i18n/it.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_quick_answer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-01-19 14:06+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: website_crm_quick_answer +#: model:mail.template,body_html:website_crm_quick_answer.email_template +msgid "" +"
Dear \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 "" +"
Spettabile \n" +"
\n" +"
\n" +"

Grazie di averci contattato!

\n" +"

\n" +" Abbiamo ricevuto la sua richiesta e risponderemo\n" +" il prima possibile.\n" +"

\n" +"

Chiediamo un po' di pazienza. Cordiali saluti.

\n" +"

Grazie,

\n" +"
\n" +" " + +#. module: website_crm_quick_answer +#: model:base.automation,name:website_crm_quick_answer.automated_action +#: model:mail.template,name:website_crm_quick_answer.email_template +msgid "Quick response to website contact form" +msgstr "Risposta rapida al contatto modulo sito web" + +#. module: website_crm_quick_answer +#: model:ir.actions.server,name:website_crm_quick_answer.send_email_action +msgid "Send email: Quick response to website contact form" +msgstr "Invia e-mail: risposta rapida al modulo di contatto del sito web" + +#. module: website_crm_quick_answer +#: model:mail.template,subject:website_crm_quick_answer.email_template +msgid "Thanks for your request" +msgstr "Grazie per la richiesta" + +#~ msgid "" +#~ "
Dear \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 "" +#~ "
Spettabile \n" +#~ "
\n" +#~ "
\n" +#~ "

La ringraziamo per averci contattato!

\n" +#~ "

\n" +#~ " Abbiamo ricevuto la tua richiesta e risponderemo " +#~ "il prima\n" +#~ " possibile.\n" +#~ "

\n" +#~ "

La preghiamo di avere pazienza. Distinti saluti.\n" +#~ "

Grazie,

\n" +#~ "
\n" +#~ " " 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..ac3baecc0a --- /dev/null +++ b/website_crm_quick_answer/i18n/website_crm_quick_answer.pot @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_quick_answer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.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:mail.template,body_html:website_crm_quick_answer.email_template +msgid "" +"
Dear \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:base.automation,name:website_crm_quick_answer.automated_action +#: model:mail.template,name:website_crm_quick_answer.email_template +msgid "Quick response to website contact form" +msgstr "" + +#. module: website_crm_quick_answer +#: model:ir.actions.server,name:website_crm_quick_answer.send_email_action +msgid "Send email: Quick response to website contact form" +msgstr "" + +#. module: website_crm_quick_answer +#: model:mail.template,subject:website_crm_quick_answer.email_template +msgid "Thanks for your request" +msgstr "" diff --git a/website_crm_quick_answer/migrations/17.0.1.0.0/pre-migration.py b/website_crm_quick_answer/migrations/17.0.1.0.0/pre-migration.py new file mode 100644 index 0000000000..1de60e9a45 --- /dev/null +++ b/website_crm_quick_answer/migrations/17.0.1.0.0/pre-migration.py @@ -0,0 +1,15 @@ +# Copyright 2025 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + # Rename the auto-generated XML-ID for the old ir.actions.server record, which is + # now explicit in data + mod = "website_crm_quick_answer" + openupgrade.rename_xmlids( + env.cr, + [(f"{mod}.automated_action_ir_actions_server", f"{mod}.send_email_action")], + ) diff --git a/website_crm_quick_answer/pyproject.toml b/website_crm_quick_answer/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/website_crm_quick_answer/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/website_crm_quick_answer/readme/CONFIGURE.md b/website_crm_quick_answer/readme/CONFIGURE.md new file mode 100644 index 0000000000..663ebb8c97 --- /dev/null +++ b/website_crm_quick_answer/readme/CONFIGURE.md @@ -0,0 +1,12 @@ +To configure this module, you need to: + +1. Have the action of the submit button on the website contact form configured to + create a new opportunity. +2. Go to **Settings \> Technical \> Automation \> Automation Rules \> + 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): + +1. Go to **Settings \> Technical \> Email \> Templates** +2. Edit the template called *Quick response to website contact form*. diff --git a/website_crm_quick_answer/readme/CONTRIBUTORS.md b/website_crm_quick_answer/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..7a572cd943 --- /dev/null +++ b/website_crm_quick_answer/readme/CONTRIBUTORS.md @@ -0,0 +1,9 @@ +- [Tecnativa](https://www.tecnativa.com): + - Rafael Blasco \<\> + - Jairo Llopis \<\> + - David Vidal \<\> + - Cristina Martin R. + - Pilar Vargas +- [Sygel Technology](https://www.sygel.es): + - Harald Panten \<\> + - Manuel Regidor \<\> diff --git a/website_crm_quick_answer/readme/DESCRIPTION.md b/website_crm_quick_answer/readme/DESCRIPTION.md new file mode 100644 index 0000000000..22c0238ac9 --- /dev/null +++ b/website_crm_quick_answer/readme/DESCRIPTION.md @@ -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.md b/website_crm_quick_answer/readme/USAGE.md new file mode 100644 index 0000000000..79ad174241 --- /dev/null +++ b/website_crm_quick_answer/readme/USAGE.md @@ -0,0 +1,6 @@ +To use this module, you need to: + +Have an email address in your main company. It will be used as sender +address. + +Complete the contact form on the website and send it to us. 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 0000000000..3a0328b516 Binary files /dev/null and b/website_crm_quick_answer/static/description/icon.png differ 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..0759b3f7ff --- /dev/null +++ b/website_crm_quick_answer/static/description/index.html @@ -0,0 +1,468 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Quick answer for website contact form

+ +

Beta License: AGPL-3 OCA/website Translate me on Weblate Try me on Runboat

+

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

+ +
+

Configuration

+

To configure this module, you need to:

+
    +
  1. Have the action of the submit button on the website contact form +configured to create a new opportunity.
  2. +
  3. Go to Settings > Technical > Automation > Automation Rules > Quick +response to website contact form and edit anything there.
  4. +
+

Quicker way to just change the email template (something that most +likely you will want to do):

+
    +
  1. Go to Settings > Technical > Email > Templates
  2. +
  3. Edit the template called Quick response to website contact form.
  4. +
+
+
+

Usage

+

To use this module, you need to:

+

Have an email address in your main company. It will be used as sender +address.

+

Complete the contact form on the website and send it to us.

+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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

+

This module is part of the OCA/website project on GitHub.

+

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

+
+
+
+
+ + 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 "" +#~ "" diff --git a/website_whatsapp/i18n/website_whatsapp.pot b/website_whatsapp/i18n/website_whatsapp.pot index 34c09f85b2..38fae38af3 100644 --- a/website_whatsapp/i18n/website_whatsapp.pot +++ b/website_whatsapp/i18n/website_whatsapp.pot @@ -13,13 +13,6 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \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" @@ -55,6 +48,11 @@ msgstr "" msgid "Use Whatsapp" msgstr "" +#. 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"