odoo-addon-mail-gateway 16.0.1.2.0__py3-none-any.whl → 17.0.1.0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-mail-gateway might be problematic. Click here for more details.
- odoo/addons/mail_gateway/README.rst +36 -25
- odoo/addons/mail_gateway/__init__.py +0 -1
- odoo/addons/mail_gateway/__manifest__.py +6 -14
- odoo/addons/mail_gateway/controllers/discuss.py +2 -2
- odoo/addons/mail_gateway/controllers/gateway.py +3 -0
- odoo/addons/mail_gateway/hooks.py +3 -3
- odoo/addons/mail_gateway/i18n/es.po +6 -309
- odoo/addons/mail_gateway/i18n/it.po +5 -336
- odoo/addons/mail_gateway/i18n/mail_gateway.pot +149 -84
- odoo/addons/mail_gateway/models/__init__.py +4 -3
- odoo/addons/mail_gateway/models/{mail_channel.py → discuss_channel.py} +30 -8
- odoo/addons/mail_gateway/models/ir_websocket.py +1 -1
- odoo/addons/mail_gateway/models/mail_gateway.py +4 -4
- odoo/addons/mail_gateway/models/mail_gateway_abstract.py +2 -2
- odoo/addons/mail_gateway/models/mail_message.py +9 -8
- odoo/addons/mail_gateway/models/mail_notification.py +3 -3
- odoo/addons/mail_gateway/models/mail_thread.py +39 -7
- odoo/addons/mail_gateway/models/res_partner.py +10 -18
- odoo/addons/mail_gateway/models/res_users.py +0 -1
- odoo/addons/mail_gateway/models/res_users_settings.py +12 -0
- odoo/addons/mail_gateway/readme/CONTRIBUTORS.md +2 -0
- odoo/addons/mail_gateway/readme/{CREDITS.rst → CREDITS.md} +2 -1
- odoo/addons/mail_gateway/readme/DESCRIPTION.md +8 -0
- odoo/addons/mail_gateway/readme/USAGE.md +12 -0
- odoo/addons/mail_gateway/security/ir.model.access.csv +4 -2
- odoo/addons/mail_gateway/security/security.xml +9 -9
- odoo/addons/mail_gateway/static/description/index.html +39 -26
- odoo/addons/mail_gateway/static/src/components/chatter/chatter.esm.js +15 -0
- odoo/addons/mail_gateway/static/src/components/chatter/chatter.xml +36 -22
- odoo/addons/mail_gateway/static/src/components/composer/composer.esm.js +108 -0
- odoo/addons/mail_gateway/static/src/components/gateway_follower/gateway_follower.esm.js +35 -22
- odoo/addons/mail_gateway/static/src/components/gateway_follower/gateway_follower.xml +3 -5
- odoo/addons/mail_gateway/static/src/components/message/message.xml +15 -15
- odoo/addons/mail_gateway/static/src/components/message/message_patch.esm.js +67 -0
- odoo/addons/mail_gateway/static/src/components/message_notification_popover_content/message_notification_popover_content.xml +3 -7
- odoo/addons/mail_gateway/static/src/core/common/composer_model_patch.esm.js +23 -0
- odoo/addons/mail_gateway/static/src/core/common/discuss_app_model_patch.esm.js +31 -0
- odoo/addons/mail_gateway/static/src/core/common/message_actions.esm.js +23 -0
- odoo/addons/mail_gateway/static/src/core/common/message_model_patch.esm.js +21 -0
- odoo/addons/mail_gateway/static/src/core/common/notification_model_patch.esm.js +35 -0
- odoo/addons/mail_gateway/static/src/core/common/persona_model_patch.esm.js +12 -0
- odoo/addons/mail_gateway/static/src/core/common/store_service_patch.esm.js +14 -0
- odoo/addons/mail_gateway/static/src/core/common/thread_model_patch.esm.js +49 -0
- odoo/addons/mail_gateway/static/src/core/common/thread_service_patch.esm.js +19 -0
- odoo/addons/mail_gateway/static/src/core/web/discuss_app_category_model_patch.esm.js +21 -0
- odoo/addons/mail_gateway/static/src/core/web/discuss_sidebar_categories.esm.js +16 -0
- odoo/addons/mail_gateway/static/src/core/web/discuss_sidebar_category_item_patch.xml +12 -0
- odoo/addons/mail_gateway/static/src/core/web/gateway_core_web_service.esm.js +40 -0
- odoo/addons/mail_gateway/static/src/models/gateway.esm.js +21 -14
- odoo/addons/mail_gateway/static/src/models/gateway_channel.esm.js +21 -13
- odoo/addons/mail_gateway/static/src/models/gateway_follower.esm.js +24 -0
- odoo/addons/mail_gateway/views/mail_gateway.xml +4 -4
- odoo/addons/mail_gateway/views/mail_guest_views.xml +15 -0
- odoo/addons/mail_gateway/wizards/mail_compose_gateway_message.py +19 -4
- odoo/addons/mail_gateway/wizards/mail_compose_gateway_message.xml +1 -2
- odoo/addons/mail_gateway/wizards/mail_guest_manage.py +2 -3
- odoo/addons/mail_gateway/wizards/mail_guest_manage.xml +2 -2
- odoo/addons/mail_gateway/wizards/mail_message_gateway_link.py +0 -1
- odoo/addons/mail_gateway/wizards/mail_message_gateway_send.py +0 -1
- {odoo_addon_mail_gateway-16.0.1.2.0.dist-info → odoo_addon_mail_gateway-17.0.1.0.0.2.dist-info}/METADATA +43 -31
- odoo_addon_mail_gateway-17.0.1.0.0.2.dist-info/RECORD +74 -0
- {odoo_addon_mail_gateway-16.0.1.2.0.dist-info → odoo_addon_mail_gateway-17.0.1.0.0.2.dist-info}/WHEEL +1 -1
- odoo_addon_mail_gateway-17.0.1.0.0.2.dist-info/top_level.txt +1 -0
- odoo/addons/mail_gateway/readme/CONTRIBUTORS.rst +0 -2
- odoo/addons/mail_gateway/readme/DESCRIPTION.rst +0 -5
- odoo/addons/mail_gateway/readme/USAGE.rst +0 -9
- odoo/addons/mail_gateway/static/src/components/composer/composer.xml +0 -24
- odoo/addons/mail_gateway/static/src/components/discuss_sidebar/discuss_sidebar.xml +0 -17
- odoo/addons/mail_gateway/static/src/models/channel.esm.js +0 -33
- odoo/addons/mail_gateway/static/src/models/channel_member_view.esm.js +0 -39
- odoo/addons/mail_gateway/static/src/models/chatter.esm.js +0 -41
- odoo/addons/mail_gateway/static/src/models/composer.esm.js +0 -32
- odoo/addons/mail_gateway/static/src/models/composer_gateway_follower.esm.js +0 -32
- odoo/addons/mail_gateway/static/src/models/composer_view.esm.js +0 -103
- odoo/addons/mail_gateway/static/src/models/discuss.esm.js +0 -51
- odoo/addons/mail_gateway/static/src/models/discuss_sidebar_category.esm.js +0 -128
- odoo/addons/mail_gateway/static/src/models/discuss_sidebar_category_item.esm.js +0 -51
- odoo/addons/mail_gateway/static/src/models/gateway_channel_view.esm.js +0 -15
- odoo/addons/mail_gateway/static/src/models/guest.esm.js +0 -10
- odoo/addons/mail_gateway/static/src/models/message.esm.js +0 -76
- odoo/addons/mail_gateway/static/src/models/message_action.esm.js +0 -45
- odoo/addons/mail_gateway/static/src/models/message_action_list.esm.js +0 -37
- odoo/addons/mail_gateway/static/src/models/message_action_view.esm.js +0 -91
- odoo/addons/mail_gateway/static/src/models/message_view.esm.js +0 -13
- odoo/addons/mail_gateway/static/src/models/messaging_initializer.esm.js +0 -24
- odoo/addons/mail_gateway/static/src/models/notification.esm.js +0 -20
- odoo/addons/mail_gateway/static/src/models/partner.esm.js +0 -11
- odoo/addons/mail_gateway/static/src/models/thread.esm.js +0 -77
- odoo_addon_mail_gateway-16.0.1.2.0.dist-info/RECORD +0 -77
- odoo_addon_mail_gateway-16.0.1.2.0.dist-info/top_level.txt +0 -1
|
@@ -6,7 +6,7 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: Odoo Server 16.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
|
-
"PO-Revision-Date: 2024-
|
|
9
|
+
"PO-Revision-Date: 2024-07-02 17:47+0000\n"
|
|
10
10
|
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
|
11
11
|
"Language-Team: none\n"
|
|
12
12
|
"Language: it\n"
|
|
@@ -14,17 +14,7 @@ msgstr ""
|
|
|
14
14
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
15
|
"Content-Transfer-Encoding: \n"
|
|
16
16
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
17
|
-
"X-Generator: Weblate
|
|
18
|
-
|
|
19
|
-
#. module: mail_gateway
|
|
20
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__active_domain
|
|
21
|
-
msgid "Active domain"
|
|
22
|
-
msgstr "Attiva dominio"
|
|
23
|
-
|
|
24
|
-
#. module: mail_gateway
|
|
25
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__partner_ids
|
|
26
|
-
msgid "Additional Contacts"
|
|
27
|
-
msgstr "Contatti addizionali"
|
|
17
|
+
"X-Generator: Weblate 4.17\n"
|
|
28
18
|
|
|
29
19
|
#. module: mail_gateway
|
|
30
20
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_channel__anonymous_name
|
|
@@ -36,40 +26,6 @@ msgstr "Nome anonimo"
|
|
|
36
26
|
msgid "Assign gateway guest to a partner"
|
|
37
27
|
msgstr "Assegna visitatore gateway ad un partner"
|
|
38
28
|
|
|
39
|
-
#. module: mail_gateway
|
|
40
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__attachment_ids
|
|
41
|
-
msgid "Attachments"
|
|
42
|
-
msgstr "Allegati"
|
|
43
|
-
|
|
44
|
-
#. module: mail_gateway
|
|
45
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__author_id
|
|
46
|
-
msgid "Author"
|
|
47
|
-
msgstr "Autore"
|
|
48
|
-
|
|
49
|
-
#. module: mail_gateway
|
|
50
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__author_id
|
|
51
|
-
msgid ""
|
|
52
|
-
"Author of the message. If not set, email_from may hold an email address that "
|
|
53
|
-
"did not match any partner."
|
|
54
|
-
msgstr ""
|
|
55
|
-
"Autore del messaggio. Se non impostato, email_from potrebbe contenere un "
|
|
56
|
-
"indirizzo email che non corrisponde ad alcun partner."
|
|
57
|
-
|
|
58
|
-
#. module: mail_gateway
|
|
59
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__partner_bcc_ids
|
|
60
|
-
msgid "Bcc"
|
|
61
|
-
msgstr "Bcc"
|
|
62
|
-
|
|
63
|
-
#. module: mail_gateway
|
|
64
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__can_attach_attachment
|
|
65
|
-
msgid "Can Attach Attachment"
|
|
66
|
-
msgstr "Può inserire allegati"
|
|
67
|
-
|
|
68
|
-
#. module: mail_gateway
|
|
69
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__can_edit_body
|
|
70
|
-
msgid "Can Edit Body"
|
|
71
|
-
msgstr "Può modificare il corpo"
|
|
72
|
-
|
|
73
29
|
#. module: mail_gateway
|
|
74
30
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__can_set_webhook
|
|
75
31
|
msgid "Can Set Webhook"
|
|
@@ -82,11 +38,6 @@ msgstr "Può impostare webhook"
|
|
|
82
38
|
msgid "Cancel"
|
|
83
39
|
msgstr "Annulla"
|
|
84
40
|
|
|
85
|
-
#. module: mail_gateway
|
|
86
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__partner_cc_ids
|
|
87
|
-
msgid "Cc"
|
|
88
|
-
msgstr "Cc"
|
|
89
|
-
|
|
90
41
|
#. module: mail_gateway
|
|
91
42
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_channel__channel_type
|
|
92
43
|
msgid "Channel Type"
|
|
@@ -95,8 +46,8 @@ msgstr "Tipo canale"
|
|
|
95
46
|
#. module: mail_gateway
|
|
96
47
|
#: model:ir.model.fields,help:mail_gateway.field_mail_channel__channel_type
|
|
97
48
|
msgid ""
|
|
98
|
-
"Chat is private and unique between 2 persons. Group is private among invited
|
|
99
|
-
"persons. Channel can be freely joined (depending on its configuration)."
|
|
49
|
+
"Chat is private and unique between 2 persons. Group is private among invited"
|
|
50
|
+
" persons. Channel can be freely joined (depending on its configuration)."
|
|
100
51
|
msgstr ""
|
|
101
52
|
"Il dialogo è privato e unico tra due persone. Il gruppo è privato tra le "
|
|
102
53
|
"persone invitate. Si può liberamente accedere al canale (in funzione della "
|
|
@@ -115,33 +66,17 @@ msgstr "Messaggi del gateway figlio"
|
|
|
115
66
|
msgid "Company"
|
|
116
67
|
msgstr "Azienda"
|
|
117
68
|
|
|
118
|
-
#. module: mail_gateway
|
|
119
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__composition_mode
|
|
120
|
-
msgid "Composition mode"
|
|
121
|
-
msgstr "Modo composizione"
|
|
122
|
-
|
|
123
|
-
#. module: mail_gateway
|
|
124
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to_force_new
|
|
125
|
-
msgid "Considers answers as new thread"
|
|
126
|
-
msgstr "Considera le risposte come nuove discussioni"
|
|
127
|
-
|
|
128
69
|
#. module: mail_gateway
|
|
129
70
|
#: model:ir.model,name:mail_gateway.model_res_partner
|
|
130
71
|
msgid "Contact"
|
|
131
72
|
msgstr "Contatto"
|
|
132
73
|
|
|
133
|
-
#. module: mail_gateway
|
|
134
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__body
|
|
135
|
-
msgid "Contents"
|
|
136
|
-
msgstr "Contenuti"
|
|
137
|
-
|
|
138
74
|
#. module: mail_gateway
|
|
139
75
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_guest_manage_form_view
|
|
140
76
|
msgid "Create new partner"
|
|
141
77
|
msgstr "Crea nuovo partner"
|
|
142
78
|
|
|
143
79
|
#. module: mail_gateway
|
|
144
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__create_uid
|
|
145
80
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__create_uid
|
|
146
81
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__create_uid
|
|
147
82
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__create_uid
|
|
@@ -151,7 +86,6 @@ msgid "Created by"
|
|
|
151
86
|
msgstr "Creato da"
|
|
152
87
|
|
|
153
88
|
#. module: mail_gateway
|
|
154
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__create_date
|
|
155
89
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__create_date
|
|
156
90
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__create_date
|
|
157
91
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__create_date
|
|
@@ -160,23 +94,12 @@ msgstr "Creato da"
|
|
|
160
94
|
msgid "Created on"
|
|
161
95
|
msgstr "Creato il"
|
|
162
96
|
|
|
163
|
-
#. module: mail_gateway
|
|
164
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__auto_delete
|
|
165
|
-
msgid "Delete Emails"
|
|
166
|
-
msgstr "Cancella e-mail"
|
|
167
|
-
|
|
168
|
-
#. module: mail_gateway
|
|
169
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__auto_delete_message
|
|
170
|
-
msgid "Delete Message Copy"
|
|
171
|
-
msgstr "Cancella copia messaggio"
|
|
172
|
-
|
|
173
97
|
#. module: mail_gateway
|
|
174
98
|
#: model:ir.model,name:mail_gateway.model_mail_channel
|
|
175
99
|
msgid "Discussion Channel"
|
|
176
100
|
msgstr "Canale discussione"
|
|
177
101
|
|
|
178
102
|
#. module: mail_gateway
|
|
179
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__display_name
|
|
180
103
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__display_name
|
|
181
104
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__display_name
|
|
182
105
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__display_name
|
|
@@ -185,40 +108,11 @@ msgstr "Canale discussione"
|
|
|
185
108
|
msgid "Display Name"
|
|
186
109
|
msgstr "Nome visualizzato"
|
|
187
110
|
|
|
188
|
-
#. module: mail_gateway
|
|
189
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__auto_delete_message
|
|
190
|
-
msgid ""
|
|
191
|
-
"Do not keep a copy of the email in the document communication history (mass "
|
|
192
|
-
"mailing only)"
|
|
193
|
-
msgstr ""
|
|
194
|
-
"Non conservare una copia dell'e-mail nella cronologia delle comunicazioni "
|
|
195
|
-
"del documento (solo invio di posta di massa)"
|
|
196
|
-
|
|
197
|
-
#. module: mail_gateway
|
|
198
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_add_signature
|
|
199
|
-
msgid "Email Add Signature"
|
|
200
|
-
msgstr "Aggiungi firma e-mail"
|
|
201
|
-
|
|
202
|
-
#. module: mail_gateway
|
|
203
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_layout_xmlid
|
|
204
|
-
msgid "Email Notification Layout"
|
|
205
|
-
msgstr "Schema notifica e-mail"
|
|
206
|
-
|
|
207
111
|
#. module: mail_gateway
|
|
208
112
|
#: model:ir.model,name:mail_gateway.model_mail_thread
|
|
209
113
|
msgid "Email Thread"
|
|
210
114
|
msgstr "Discussione e-mail"
|
|
211
115
|
|
|
212
|
-
#. module: mail_gateway
|
|
213
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__email_from
|
|
214
|
-
msgid ""
|
|
215
|
-
"Email address of the sender. This field is set when no matching partner is "
|
|
216
|
-
"found and replaces the author_id field in the chatter."
|
|
217
|
-
msgstr ""
|
|
218
|
-
"Indirizzo email del mittente. Questo campo è impostato quando non viene "
|
|
219
|
-
"trovato un partner corrispondente e sostituisce il campo author_id "
|
|
220
|
-
"nell'elenco comunicazioni."
|
|
221
|
-
|
|
222
116
|
#. module: mail_gateway
|
|
223
117
|
#: model:ir.model.fields,help:mail_gateway.field_mail_notification__gateway_failure_reason
|
|
224
118
|
msgid ""
|
|
@@ -235,11 +129,6 @@ msgstr ""
|
|
|
235
129
|
msgid "Find a gateway channel..."
|
|
236
130
|
msgstr "Trova un canale gateway..."
|
|
237
131
|
|
|
238
|
-
#. module: mail_gateway
|
|
239
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_from
|
|
240
|
-
msgid "From"
|
|
241
|
-
msgstr "Da"
|
|
242
|
-
|
|
243
132
|
#. module: mail_gateway
|
|
244
133
|
#: model:ir.actions.act_window,name:mail_gateway.mail_gateway_act_window
|
|
245
134
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_channel__gateway_id
|
|
@@ -325,7 +214,6 @@ msgstr "Riepilogo gateway per funzioni"
|
|
|
325
214
|
#. module: mail_gateway
|
|
326
215
|
#. odoo-javascript
|
|
327
216
|
#: code:addons/mail_gateway/static/src/components/chatter/chatter.xml:0
|
|
328
|
-
#: code:addons/mail_gateway/static/src/models/composer_view.esm.js:0
|
|
329
217
|
#, python-format
|
|
330
218
|
msgid "Gateway message"
|
|
331
219
|
msgstr "Messaggio gateway"
|
|
@@ -335,11 +223,6 @@ msgstr "Messaggio gateway"
|
|
|
335
223
|
msgid "Gateway related Token"
|
|
336
224
|
msgstr "Token relativo al gateway"
|
|
337
225
|
|
|
338
|
-
#. module: mail_gateway
|
|
339
|
-
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_compose_gateway_message_form_view
|
|
340
|
-
msgid "Gateways"
|
|
341
|
-
msgstr "Gateway"
|
|
342
|
-
|
|
343
226
|
#. module: mail_gateway
|
|
344
227
|
#: model:ir.model,name:mail_gateway.model_mail_guest
|
|
345
228
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__guest_id
|
|
@@ -352,7 +235,6 @@ msgid "Has New Channel Security"
|
|
|
352
235
|
msgstr "Ha nuova sicurezza canale"
|
|
353
236
|
|
|
354
237
|
#. module: mail_gateway
|
|
355
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__id
|
|
356
238
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__id
|
|
357
239
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__id
|
|
358
240
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__id
|
|
@@ -361,15 +243,6 @@ msgstr "Ha nuova sicurezza canale"
|
|
|
361
243
|
msgid "ID"
|
|
362
244
|
msgstr "ID"
|
|
363
245
|
|
|
364
|
-
#. module: mail_gateway
|
|
365
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__mass_mailing_name
|
|
366
|
-
msgid ""
|
|
367
|
-
"If set, a mass mailing will be created so that you can track its results in "
|
|
368
|
-
"the Email Marketing app."
|
|
369
|
-
msgstr ""
|
|
370
|
-
"Se impostato, verrà creato un invio di massa in modo da poterne monitorare i "
|
|
371
|
-
"risultati nell'app Email Marketing."
|
|
372
|
-
|
|
373
246
|
#. module: mail_gateway
|
|
374
247
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
375
248
|
msgid "Integrate Webhook"
|
|
@@ -385,11 +258,6 @@ msgstr "Integrato"
|
|
|
385
258
|
msgid "Integrated Webhook State"
|
|
386
259
|
msgstr "Stato webhook integrato"
|
|
387
260
|
|
|
388
|
-
#. module: mail_gateway
|
|
389
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__is_mail_template_editor
|
|
390
|
-
msgid "Is Editor"
|
|
391
|
-
msgstr "È editore"
|
|
392
|
-
|
|
393
261
|
#. module: mail_gateway
|
|
394
262
|
#: model:ir.model.fields,help:mail_gateway.field_mail_channel__gateway_token
|
|
395
263
|
#: model:ir.model.fields,help:mail_gateway.field_mail_gateway__token
|
|
@@ -411,12 +279,6 @@ msgstr ""
|
|
|
411
279
|
" arriva dalla sorgente desiderata"
|
|
412
280
|
|
|
413
281
|
#. module: mail_gateway
|
|
414
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__lang
|
|
415
|
-
msgid "Language"
|
|
416
|
-
msgstr "Lingua"
|
|
417
|
-
|
|
418
|
-
#. module: mail_gateway
|
|
419
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message____last_update
|
|
420
282
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway____last_update
|
|
421
283
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage____last_update
|
|
422
284
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link____last_update
|
|
@@ -426,7 +288,6 @@ msgid "Last Modified on"
|
|
|
426
288
|
msgstr "Ultima modifica il"
|
|
427
289
|
|
|
428
290
|
#. module: mail_gateway
|
|
429
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__write_uid
|
|
430
291
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__write_uid
|
|
431
292
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__write_uid
|
|
432
293
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__write_uid
|
|
@@ -436,7 +297,6 @@ msgid "Last Updated by"
|
|
|
436
297
|
msgstr "Ultimo aggiornamento di"
|
|
437
298
|
|
|
438
299
|
#. module: mail_gateway
|
|
439
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__write_date
|
|
440
300
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__write_date
|
|
441
301
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__write_date
|
|
442
302
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__write_date
|
|
@@ -469,21 +329,6 @@ msgstr "Collega messaggio dal gateway"
|
|
|
469
329
|
msgid "Link to thread"
|
|
470
330
|
msgstr "Collega alla discussione"
|
|
471
331
|
|
|
472
|
-
#. module: mail_gateway
|
|
473
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__is_log
|
|
474
|
-
msgid "Log as Internal Note"
|
|
475
|
-
msgstr "Registra come nota interna"
|
|
476
|
-
|
|
477
|
-
#. module: mail_gateway
|
|
478
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mail_activity_type_id
|
|
479
|
-
msgid "Mail Activity Type"
|
|
480
|
-
msgstr "Tipo attività e-mail"
|
|
481
|
-
|
|
482
|
-
#. module: mail_gateway
|
|
483
|
-
#: model:ir.model,name:mail_gateway.model_mail_compose_gateway_message
|
|
484
|
-
msgid "Mail Compose Gateway Message"
|
|
485
|
-
msgstr "Messaggio gateway composizione e-mail"
|
|
486
|
-
|
|
487
332
|
#. module: mail_gateway
|
|
488
333
|
#: model:ir.model,name:mail_gateway.model_mail_gateway
|
|
489
334
|
msgid "Mail Gateway"
|
|
@@ -499,20 +344,6 @@ msgstr "Collegamento gateway messaggio e-mail"
|
|
|
499
344
|
msgid "Mail Message Gateway Send"
|
|
500
345
|
msgstr "Invia messaggio e-mail gateway"
|
|
501
346
|
|
|
502
|
-
#. module: mail_gateway
|
|
503
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mailing_list_ids
|
|
504
|
-
msgid "Mailing List"
|
|
505
|
-
msgstr "Mailing list"
|
|
506
|
-
|
|
507
|
-
#. module: mail_gateway
|
|
508
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to_force_new
|
|
509
|
-
msgid ""
|
|
510
|
-
"Manage answers as new incoming emails instead of replies going to the same "
|
|
511
|
-
"thread."
|
|
512
|
-
msgstr ""
|
|
513
|
-
"Gestisci le risposte come nuove email in arrivo anziché come risposte "
|
|
514
|
-
"inviate alla stessa discussione."
|
|
515
|
-
|
|
516
347
|
#. module: mail_gateway
|
|
517
348
|
#. odoo-javascript
|
|
518
349
|
#: code:addons/mail_gateway/static/src/models/channel_member_view.esm.js:0
|
|
@@ -520,21 +351,6 @@ msgstr ""
|
|
|
520
351
|
msgid "Manage guest"
|
|
521
352
|
msgstr "Gestione ospite"
|
|
522
353
|
|
|
523
|
-
#. module: mail_gateway
|
|
524
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mass_mailing_id
|
|
525
|
-
msgid "Mass Mailing"
|
|
526
|
-
msgstr "Spedizione di massa"
|
|
527
|
-
|
|
528
|
-
#. module: mail_gateway
|
|
529
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__campaign_id
|
|
530
|
-
msgid "Mass Mailing Campaign"
|
|
531
|
-
msgstr "Campagna spedizione di massa"
|
|
532
|
-
|
|
533
|
-
#. module: mail_gateway
|
|
534
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mass_mailing_name
|
|
535
|
-
msgid "Mass Mailing Name"
|
|
536
|
-
msgstr "Nome spedizione di massa"
|
|
537
|
-
|
|
538
354
|
#. module: mail_gateway
|
|
539
355
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__member_ids
|
|
540
356
|
msgid "Member"
|
|
@@ -562,20 +378,6 @@ msgstr "Messaggio"
|
|
|
562
378
|
msgid "Message Notifications"
|
|
563
379
|
msgstr "Notifiche messaggio"
|
|
564
380
|
|
|
565
|
-
#. module: mail_gateway
|
|
566
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__record_name
|
|
567
|
-
msgid "Message Record Name"
|
|
568
|
-
msgstr "Nome record messaggio"
|
|
569
|
-
|
|
570
|
-
#. module: mail_gateway
|
|
571
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__message_type
|
|
572
|
-
msgid ""
|
|
573
|
-
"Message type: email for email message, notification for system message, "
|
|
574
|
-
"comment for other messages such as user replies"
|
|
575
|
-
msgstr ""
|
|
576
|
-
"Tipo di messaggio: e-mail per messaggio e-mail, notifica per messaggio di "
|
|
577
|
-
"sistema, commento per altri messaggi come risposte utente"
|
|
578
|
-
|
|
579
381
|
#. module: mail_gateway
|
|
580
382
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__name
|
|
581
383
|
#: model:ir.model.fields,field_description:mail_gateway.field_res_partner_gateway_channel__name
|
|
@@ -594,66 +396,12 @@ msgstr "Non selezionato"
|
|
|
594
396
|
msgid "Notification Type"
|
|
595
397
|
msgstr "Tipo notifica"
|
|
596
398
|
|
|
597
|
-
#. module: mail_gateway
|
|
598
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__notify
|
|
599
|
-
msgid "Notify followers"
|
|
600
|
-
msgstr "Avvisa chi segue"
|
|
601
|
-
|
|
602
|
-
#. module: mail_gateway
|
|
603
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__notify
|
|
604
|
-
msgid "Notify followers of the document (mass post only)"
|
|
605
|
-
msgstr "Notifica chi segue il documento (solo invio di massa)"
|
|
606
|
-
|
|
607
|
-
#. module: mail_gateway
|
|
608
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__object_attachment_ids
|
|
609
|
-
msgid "Object Attachments"
|
|
610
|
-
msgstr "Allegati oggetto"
|
|
611
|
-
|
|
612
|
-
#. module: mail_gateway
|
|
613
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__lang
|
|
614
|
-
msgid ""
|
|
615
|
-
"Optional translation language (ISO code) to select when sending out an "
|
|
616
|
-
"email. If not set, the english version will be used. This should usually be "
|
|
617
|
-
"a placeholder expression that provides the appropriate language, e.g. "
|
|
618
|
-
"{{ object.partner_id.lang }}."
|
|
619
|
-
msgstr ""
|
|
620
|
-
"Lingua di traduzione facoltativa (codice ISO) da selezionare quando si invia "
|
|
621
|
-
"un'e-mail. Se non impostata, verrà utilizzata la versione inglese. Di solito "
|
|
622
|
-
"dovrebbe essere un'espressione segnaposto che fornisce la lingua "
|
|
623
|
-
"appropriata, ad esempio {{ object.partner_id.lang }}."
|
|
624
|
-
|
|
625
|
-
#. module: mail_gateway
|
|
626
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to_mode
|
|
627
|
-
msgid ""
|
|
628
|
-
"Original Discussion: Answers go in the original document discussion "
|
|
629
|
-
"thread. \n"
|
|
630
|
-
" Another Email Address: Answers go to the email address mentioned in the "
|
|
631
|
-
"tracking message-id instead of original document discussion thread. \n"
|
|
632
|
-
" This has an impact on the generated message-id."
|
|
633
|
-
msgstr ""
|
|
634
|
-
"Discussione originale: le risposte vanno nella traccia di discussione del "
|
|
635
|
-
"documento originale.\n"
|
|
636
|
-
"Un altro indirizzo e-mail: le risposte vanno all'indirizzo e-mail menzionato "
|
|
637
|
-
"nel messaggio di tracciamento-id invece che nella traccia di discussione del "
|
|
638
|
-
"documento originale.\n"
|
|
639
|
-
"Questo ha un impatto sul message-id generato."
|
|
640
|
-
|
|
641
399
|
#. module: mail_gateway
|
|
642
400
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_mail__gateway_message_id
|
|
643
401
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message__gateway_message_id
|
|
644
402
|
msgid "Original gateway message"
|
|
645
403
|
msgstr "Messaggio gateway originale"
|
|
646
404
|
|
|
647
|
-
#. module: mail_gateway
|
|
648
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mail_server_id
|
|
649
|
-
msgid "Outgoing mail server"
|
|
650
|
-
msgstr "Server posta in uscita"
|
|
651
|
-
|
|
652
|
-
#. module: mail_gateway
|
|
653
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__parent_id
|
|
654
|
-
msgid "Parent Message"
|
|
655
|
-
msgstr "Messaggio padre"
|
|
656
|
-
|
|
657
405
|
#. module: mail_gateway
|
|
658
406
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__partner_id
|
|
659
407
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_send__partner_id
|
|
@@ -676,45 +424,11 @@ msgstr "In attesa"
|
|
|
676
424
|
msgid "Record reference"
|
|
677
425
|
msgstr "Riferimento record"
|
|
678
426
|
|
|
679
|
-
#. module: mail_gateway
|
|
680
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__res_id
|
|
681
|
-
msgid "Related Document ID"
|
|
682
|
-
msgstr "ID documento correlato"
|
|
683
|
-
|
|
684
|
-
#. module: mail_gateway
|
|
685
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__model
|
|
686
|
-
msgid "Related Document Model"
|
|
687
|
-
msgstr "Modello documento correlato"
|
|
688
|
-
|
|
689
427
|
#. module: mail_gateway
|
|
690
428
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
691
429
|
msgid "Remove Webhook"
|
|
692
430
|
msgstr "Rimuovi webhook"
|
|
693
431
|
|
|
694
|
-
#. module: mail_gateway
|
|
695
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__render_model
|
|
696
|
-
msgid "Rendering Model"
|
|
697
|
-
msgstr "Modello presentazione"
|
|
698
|
-
|
|
699
|
-
#. module: mail_gateway
|
|
700
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to_mode
|
|
701
|
-
msgid "Replies"
|
|
702
|
-
msgstr "Risposte"
|
|
703
|
-
|
|
704
|
-
#. module: mail_gateway
|
|
705
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to
|
|
706
|
-
msgid "Reply To"
|
|
707
|
-
msgstr "Rispondi a"
|
|
708
|
-
|
|
709
|
-
#. module: mail_gateway
|
|
710
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to
|
|
711
|
-
msgid ""
|
|
712
|
-
"Reply email address. Setting the reply_to bypasses the automatic thread "
|
|
713
|
-
"creation."
|
|
714
|
-
msgstr ""
|
|
715
|
-
"Indirizzo e-mail risposta. Impostando replay_to evitando la creazione "
|
|
716
|
-
"automatica dell'argomento."
|
|
717
|
-
|
|
718
432
|
#. module: mail_gateway
|
|
719
433
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_message_gateway_send_form_view
|
|
720
434
|
msgid "Send"
|
|
@@ -728,36 +442,16 @@ msgstr "Invia messaggio attraverso il gateway"
|
|
|
728
442
|
#. module: mail_gateway
|
|
729
443
|
#. odoo-javascript
|
|
730
444
|
#: code:addons/mail_gateway/static/src/models/message_action_view.esm.js:0
|
|
445
|
+
#: code:addons/mail_gateway/static/src/models/message_action_view.esm.js:0
|
|
731
446
|
#, python-format
|
|
732
447
|
msgid "Send with gateway"
|
|
733
448
|
msgstr "Invia con gateway"
|
|
734
449
|
|
|
735
|
-
#. module: mail_gateway
|
|
736
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__subject
|
|
737
|
-
msgid "Subject"
|
|
738
|
-
msgstr "Oggetto"
|
|
739
|
-
|
|
740
|
-
#. module: mail_gateway
|
|
741
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__subtype_id
|
|
742
|
-
msgid "Subtype"
|
|
743
|
-
msgstr "Sottotipo"
|
|
744
|
-
|
|
745
450
|
#. module: mail_gateway
|
|
746
451
|
#: model:ir.model,name:mail_gateway.model_res_partner_gateway_channel
|
|
747
452
|
msgid "Technical data used to get the gateway author"
|
|
748
453
|
msgstr "Dati tecnici per avere l'autore del gateway"
|
|
749
454
|
|
|
750
|
-
#. module: mail_gateway
|
|
751
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__auto_delete
|
|
752
|
-
msgid ""
|
|
753
|
-
"This option permanently removes any track of email after it's been sent, "
|
|
754
|
-
"including from the Technical menu in the Settings, in order to preserve "
|
|
755
|
-
"storage space of your Odoo database."
|
|
756
|
-
msgstr ""
|
|
757
|
-
"Questa opzione rimuove definitivamente ogni traccia dell'e-mail dopo il suo "
|
|
758
|
-
"invio, anche dal menu Tecnico nelle Impostazioni, in modo da preservare lo "
|
|
759
|
-
"spazio di archiviazione del database Odoo."
|
|
760
|
-
|
|
761
455
|
#. module: mail_gateway
|
|
762
456
|
#. odoo-javascript
|
|
763
457
|
#: code:addons/mail_gateway/static/src/components/composer/composer.xml:0
|
|
@@ -775,26 +469,11 @@ msgstr "Token"
|
|
|
775
469
|
msgid "Token must be unique"
|
|
776
470
|
msgstr "Il token deve essere univoco"
|
|
777
471
|
|
|
778
|
-
#. module: mail_gateway
|
|
779
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__message_type
|
|
780
|
-
msgid "Type"
|
|
781
|
-
msgstr "Tipo"
|
|
782
|
-
|
|
783
472
|
#. module: mail_gateway
|
|
784
473
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
785
474
|
msgid "Update Webhook"
|
|
786
475
|
msgstr "Aggiorna webhook"
|
|
787
476
|
|
|
788
|
-
#. module: mail_gateway
|
|
789
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__use_active_domain
|
|
790
|
-
msgid "Use active domain"
|
|
791
|
-
msgstr "Usa dominio attivo"
|
|
792
|
-
|
|
793
|
-
#. module: mail_gateway
|
|
794
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__template_id
|
|
795
|
-
msgid "Use template"
|
|
796
|
-
msgstr "Usa modello"
|
|
797
|
-
|
|
798
477
|
#. module: mail_gateway
|
|
799
478
|
#: model:ir.model,name:mail_gateway.model_res_users
|
|
800
479
|
#: model:res.groups,name:mail_gateway.gateway_user
|
|
@@ -839,16 +518,6 @@ msgstr ""
|
|
|
839
518
|
"Quando selezionata, i canali non sono creati automaticamente. Utilizzabile "
|
|
840
519
|
"in Telegram"
|
|
841
520
|
|
|
842
|
-
#. module: mail_gateway
|
|
843
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__wizard_channel_ids
|
|
844
|
-
msgid "Wizard Channel"
|
|
845
|
-
msgstr "Procedura guidata canale"
|
|
846
|
-
|
|
847
|
-
#. module: mail_gateway
|
|
848
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__wizard_partner_ids
|
|
849
|
-
msgid "Wizard Partner"
|
|
850
|
-
msgstr "Partner procedura guidata"
|
|
851
|
-
|
|
852
521
|
#. module: mail_gateway
|
|
853
522
|
#. odoo-javascript
|
|
854
523
|
#: code:addons/mail_gateway/static/src/components/message/message.xml:0
|