Skip to content

Commit 80f040e

Browse files
author
Shivam-2512
committed
[MIG] website_whatsapp: migration to 19.0
1 parent 91faf68 commit 80f040e

20 files changed

Lines changed: 1061 additions & 0 deletions

website_whatsapp/README.rst

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
.. image:: https://odoo-community.org/readme-banner-image
2+
:target: https://odoo-community.org/get-involved?utm_source=readme
3+
:alt: Odoo Community Association
4+
5+
================
6+
Website Whatsapp
7+
================
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:5f532daa02a98aae94a5c4c62e0da6e410f5eac475b4d6ed9a7911537533f37b
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Beta
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
22+
:alt: License: AGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github
24+
:target: https://github.com/OCA/website/tree/18.0/website_whatsapp
25+
:alt: OCA/website
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/website-18-0/website-18-0-website_whatsapp
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=18.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
Enable a WhatsApp floating button on the website to be able to send a
36+
message quickly
37+
38+
**Table of contents**
39+
40+
.. contents::
41+
:local:
42+
43+
Configuration
44+
=============
45+
46+
To configure this module, you need to:
47+
48+
1. Go to **Website > Configuration > Settings**
49+
2. Search 'Use Whatsapp' option.
50+
3. Fill in your 'WhatsApp number' and the other optional values
51+
52+
Bug Tracker
53+
===========
54+
55+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/website/issues>`_.
56+
In case of trouble, please check there if your issue has already been reported.
57+
If you spotted it first, help us to smash it by providing a detailed and welcomed
58+
`feedback <https://github.com/OCA/website/issues/new?body=module:%20website_whatsapp%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
59+
60+
Do not contact contributors directly about support or help with technical issues.
61+
62+
Credits
63+
=======
64+
65+
Authors
66+
-------
67+
68+
* WesurRV
69+
70+
Contributors
71+
------------
72+
73+
- `Wesurrv <https://www.wesurrv.com>`__:
74+
75+
- Shivam Kachhia <shivamkachhia04@gmail.com>
76+
77+
Maintainers
78+
-----------
79+
80+
This module is maintained by the OCA.
81+
82+
.. image:: https://odoo-community.org/logo.png
83+
:alt: Odoo Community Association
84+
:target: https://odoo-community.org
85+
86+
OCA, or the Odoo Community Association, is a nonprofit organization whose
87+
mission is to support the collaborative development of Odoo features and
88+
promote its widespread use.
89+
90+
.. |maintainer-Shivam-2512| image:: https://github.com/Shivam-2512.png?size=40px
91+
:target: https://github.com/Shivam-2512
92+
:alt: Shivam-2512
93+
94+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
95+
96+
|maintainer-Shivam-2512|
97+
98+
This module is part of the `OCA/website <https://github.com/OCA/website/tree/18.0/website_whatsapp>`_ project on GitHub.
99+
100+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

website_whatsapp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

website_whatsapp/__manifest__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright 2022 WesurRV - Shivam Kachhia <shivamkachhia04@gmail.com>
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3+
4+
{
5+
"name": "Website Whatsapp",
6+
"summary": "Whatsapp integration",
7+
"category": "Website",
8+
"version": "19.0.1.0.0",
9+
"website": "https://github.com/OCA/website",
10+
"author": "Shivam-2512, Odoo Community Association (OCA)",
11+
"maintainers": ["Shivam-2512"],
12+
"license": "AGPL-3",
13+
"depends": ["website"],
14+
"data": [
15+
"templates/website.xml",
16+
"views/res_config_settings.xml",
17+
],
18+
"assets": {
19+
"web.assets_frontend": ["/website_whatsapp/static/src/scss/website.scss"]
20+
},
21+
"installable": True,
22+
}

website_whatsapp/i18n/es.po

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * website_whatsapp
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 19.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2026-01-09 11:22+0000\n"
10+
"PO-Revision-Date: 2026-01-09 11:22+0000\n"
11+
"Last-Translator: \n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: website_whatsapp
19+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
20+
msgid ""
21+
"<span class=\"fa fa-lg fa-globe\" title=\"Values set here are website-"
22+
"specific.\" groups=\"website.group_multi_website\"/>"
23+
msgstr ""
24+
25+
#. module: website_whatsapp
26+
#: model:ir.model,name:website_whatsapp.model_res_config_settings
27+
msgid "Config Settings"
28+
msgstr "Ajustes de configuración"
29+
30+
#. module: website_whatsapp
31+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_text
32+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_text
33+
msgid "Default text for Whatsapp"
34+
msgstr "Texto predeterminado para Whatsapp"
35+
36+
#. module: website_whatsapp
37+
#: model:ir.model.fields,help:website_whatsapp.field_res_config_settings__whatsapp_text
38+
#: model:ir.model.fields,help:website_whatsapp.field_website__whatsapp_text
39+
msgid "Default text to send as message"
40+
msgstr "Texto predeterminado para enviar como mensaje"
41+
42+
#. module: website_whatsapp
43+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__display_name
44+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__display_name
45+
msgid "Display Name"
46+
msgstr "Nombre para mostrar"
47+
48+
#. module: website_whatsapp
49+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__id
50+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__id
51+
msgid "ID"
52+
msgstr ""
53+
54+
#. module: website_whatsapp
55+
#: model:ir.model.fields,help:website_whatsapp.field_res_config_settings__whatsapp_track_url
56+
#: model:ir.model.fields,help:website_whatsapp.field_website__whatsapp_track_url
57+
msgid ""
58+
"Indicate in the user's message the URL of the page from which it was sent"
59+
msgstr ""
60+
"Indicar en el mensaje del usuario la URL de la página desde la que se envió"
61+
62+
#. module: website_whatsapp
63+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_track_url
64+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_track_url
65+
msgid "Track URL"
66+
msgstr "URL de seguimiento"
67+
68+
#. module: website_whatsapp
69+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_enabled
70+
msgid "Use Whatsapp"
71+
msgstr "Utilizar Whatsapp"
72+
73+
#. module: website_whatsapp
74+
#: model:ir.model,name:website_whatsapp.model_website
75+
msgid "Website"
76+
msgstr "Sitio Web"
77+
78+
#. module: website_whatsapp
79+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.layout
80+
msgid "WhatsApp Floating Icon"
81+
msgstr "Icono flotante de WhatsApp"
82+
83+
#. module: website_whatsapp
84+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_number
85+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_number
86+
msgid "WhatsApp number"
87+
msgstr "Número de WhatsApp"
88+
89+
#. module: website_whatsapp
90+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
91+
msgid "You must add the mobile number with the country prefix"
92+
msgstr "Debes añadir el número de móvil con el prefijo del país"

website_whatsapp/i18n/it.po

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * website_whatsapp
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 19.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2026-01-09 11:22+0000\n"
10+
"PO-Revision-Date: 2026-01-09 11:22+0000\n"
11+
"Last-Translator: \n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: website_whatsapp
19+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
20+
msgid ""
21+
"<span class=\"fa fa-lg fa-globe\" title=\"Values set here are website-"
22+
"specific.\" groups=\"website.group_multi_website\"/>"
23+
msgstr ""
24+
"<span class=\"fa fa-lg fa-globe\" title=\"I valori impostati qui sono "
25+
"specifici per sito web.\" groups=\"website.group_multi_website\"/>"
26+
27+
#. module: website_whatsapp
28+
#: model:ir.model,name:website_whatsapp.model_res_config_settings
29+
msgid "Config Settings"
30+
msgstr "Impostazioni di configurazione"
31+
32+
#. module: website_whatsapp
33+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_text
34+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_text
35+
msgid "Default text for Whatsapp"
36+
msgstr "Testo predefinito per Whatsapp"
37+
38+
#. module: website_whatsapp
39+
#: model:ir.model.fields,help:website_whatsapp.field_res_config_settings__whatsapp_text
40+
#: model:ir.model.fields,help:website_whatsapp.field_website__whatsapp_text
41+
msgid "Default text to send as message"
42+
msgstr "Testo predefinito da inviare come messaggio"
43+
44+
#. module: website_whatsapp
45+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__display_name
46+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__display_name
47+
msgid "Display Name"
48+
msgstr "Nome visualizzato"
49+
50+
#. module: website_whatsapp
51+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__id
52+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__id
53+
msgid "ID"
54+
msgstr ""
55+
56+
#. module: website_whatsapp
57+
#: model:ir.model.fields,help:website_whatsapp.field_res_config_settings__whatsapp_track_url
58+
#: model:ir.model.fields,help:website_whatsapp.field_website__whatsapp_track_url
59+
msgid ""
60+
"Indicate in the user's message the URL of the page from which it was sent"
61+
msgstr ""
62+
"Indicare nel messaggio utente l'URL della pagina da cui è stato inviato"
63+
64+
#. module: website_whatsapp
65+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_track_url
66+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_track_url
67+
msgid "Track URL"
68+
msgstr "Traccia URL"
69+
70+
#. module: website_whatsapp
71+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_enabled
72+
msgid "Use Whatsapp"
73+
msgstr "Utilizza Whatsapp"
74+
75+
#. module: website_whatsapp
76+
#: model:ir.model,name:website_whatsapp.model_website
77+
msgid "Website"
78+
msgstr "Sito web"
79+
80+
#. module: website_whatsapp
81+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.layout
82+
msgid "WhatsApp Floating Icon"
83+
msgstr "Icona flottante Whatsapp"
84+
85+
#. module: website_whatsapp
86+
#: model:ir.model.fields,field_description:website_whatsapp.field_res_config_settings__whatsapp_number
87+
#: model:ir.model.fields,field_description:website_whatsapp.field_website__whatsapp_number
88+
msgid "WhatsApp number"
89+
msgstr "Numero Whatsapp"
90+
91+
#. module: website_whatsapp
92+
#: model_terms:ir.ui.view,arch_db:website_whatsapp.res_config_settings_view_form
93+
msgid "You must add the mobile number with the country prefix"
94+
msgstr ""
95+
"È necessario aggiungere il numero del cellulare con il prefisso della "
96+
"nazione"

0 commit comments

Comments
 (0)