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,25 +6,15 @@ 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-
|
|
10
|
-
"Last-Translator:
|
|
9
|
+
"PO-Revision-Date: 2024-05-28 16:26+0000\n"
|
|
10
|
+
"Last-Translator: Anna Martínez <anna080678@gmail.com>\n"
|
|
11
11
|
"Language-Team: none\n"
|
|
12
12
|
"Language: es\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
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 ""
|
|
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 "Contactos adicionales"
|
|
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,38 +26,6 @@ msgstr "Nombre anónimo"
|
|
|
36
26
|
msgid "Assign gateway guest to a partner"
|
|
37
27
|
msgstr ""
|
|
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 ""
|
|
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 ""
|
|
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
|
-
|
|
56
|
-
#. module: mail_gateway
|
|
57
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__partner_bcc_ids
|
|
58
|
-
msgid "Bcc"
|
|
59
|
-
msgstr ""
|
|
60
|
-
|
|
61
|
-
#. module: mail_gateway
|
|
62
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__can_attach_attachment
|
|
63
|
-
msgid "Can Attach Attachment"
|
|
64
|
-
msgstr ""
|
|
65
|
-
|
|
66
|
-
#. module: mail_gateway
|
|
67
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__can_edit_body
|
|
68
|
-
msgid "Can Edit Body"
|
|
69
|
-
msgstr ""
|
|
70
|
-
|
|
71
29
|
#. module: mail_gateway
|
|
72
30
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__can_set_webhook
|
|
73
31
|
msgid "Can Set Webhook"
|
|
@@ -80,11 +38,6 @@ msgstr "Puede establecer un webhook"
|
|
|
80
38
|
msgid "Cancel"
|
|
81
39
|
msgstr "Cancelar"
|
|
82
40
|
|
|
83
|
-
#. module: mail_gateway
|
|
84
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__partner_cc_ids
|
|
85
|
-
msgid "Cc"
|
|
86
|
-
msgstr ""
|
|
87
|
-
|
|
88
41
|
#. module: mail_gateway
|
|
89
42
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_channel__channel_type
|
|
90
43
|
msgid "Channel Type"
|
|
@@ -93,8 +46,8 @@ msgstr "Tipo de canal"
|
|
|
93
46
|
#. module: mail_gateway
|
|
94
47
|
#: model:ir.model.fields,help:mail_gateway.field_mail_channel__channel_type
|
|
95
48
|
msgid ""
|
|
96
|
-
"Chat is private and unique between 2 persons. Group is private among invited
|
|
97
|
-
"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)."
|
|
98
51
|
msgstr ""
|
|
99
52
|
"El chat es privado y único entre 2 personas. El grupo es privado entre las "
|
|
100
53
|
"personas invitadas. El canal se pueden unir libremente (dependiendo de su "
|
|
@@ -113,33 +66,17 @@ msgstr ""
|
|
|
113
66
|
msgid "Company"
|
|
114
67
|
msgstr "Compañía"
|
|
115
68
|
|
|
116
|
-
#. module: mail_gateway
|
|
117
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__composition_mode
|
|
118
|
-
msgid "Composition mode"
|
|
119
|
-
msgstr ""
|
|
120
|
-
|
|
121
|
-
#. module: mail_gateway
|
|
122
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to_force_new
|
|
123
|
-
msgid "Considers answers as new thread"
|
|
124
|
-
msgstr ""
|
|
125
|
-
|
|
126
69
|
#. module: mail_gateway
|
|
127
70
|
#: model:ir.model,name:mail_gateway.model_res_partner
|
|
128
71
|
msgid "Contact"
|
|
129
72
|
msgstr "Contacto"
|
|
130
73
|
|
|
131
|
-
#. module: mail_gateway
|
|
132
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__body
|
|
133
|
-
msgid "Contents"
|
|
134
|
-
msgstr ""
|
|
135
|
-
|
|
136
74
|
#. module: mail_gateway
|
|
137
75
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_guest_manage_form_view
|
|
138
76
|
msgid "Create new partner"
|
|
139
77
|
msgstr "Crear una nueva empresa"
|
|
140
78
|
|
|
141
79
|
#. module: mail_gateway
|
|
142
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__create_uid
|
|
143
80
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__create_uid
|
|
144
81
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__create_uid
|
|
145
82
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__create_uid
|
|
@@ -149,7 +86,6 @@ msgid "Created by"
|
|
|
149
86
|
msgstr "Creado por"
|
|
150
87
|
|
|
151
88
|
#. module: mail_gateway
|
|
152
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__create_date
|
|
153
89
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__create_date
|
|
154
90
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__create_date
|
|
155
91
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__create_date
|
|
@@ -158,23 +94,12 @@ msgstr "Creado por"
|
|
|
158
94
|
msgid "Created on"
|
|
159
95
|
msgstr "Creado el"
|
|
160
96
|
|
|
161
|
-
#. module: mail_gateway
|
|
162
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__auto_delete
|
|
163
|
-
msgid "Delete Emails"
|
|
164
|
-
msgstr ""
|
|
165
|
-
|
|
166
|
-
#. module: mail_gateway
|
|
167
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__auto_delete_message
|
|
168
|
-
msgid "Delete Message Copy"
|
|
169
|
-
msgstr ""
|
|
170
|
-
|
|
171
97
|
#. module: mail_gateway
|
|
172
98
|
#: model:ir.model,name:mail_gateway.model_mail_channel
|
|
173
99
|
msgid "Discussion Channel"
|
|
174
100
|
msgstr "Canal de discusión"
|
|
175
101
|
|
|
176
102
|
#. module: mail_gateway
|
|
177
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__display_name
|
|
178
103
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__display_name
|
|
179
104
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__display_name
|
|
180
105
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__display_name
|
|
@@ -183,35 +108,11 @@ msgstr "Canal de discusión"
|
|
|
183
108
|
msgid "Display Name"
|
|
184
109
|
msgstr "Mostrar Nombre"
|
|
185
110
|
|
|
186
|
-
#. module: mail_gateway
|
|
187
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__auto_delete_message
|
|
188
|
-
msgid ""
|
|
189
|
-
"Do not keep a copy of the email in the document communication history (mass "
|
|
190
|
-
"mailing only)"
|
|
191
|
-
msgstr ""
|
|
192
|
-
|
|
193
|
-
#. module: mail_gateway
|
|
194
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_add_signature
|
|
195
|
-
msgid "Email Add Signature"
|
|
196
|
-
msgstr ""
|
|
197
|
-
|
|
198
|
-
#. module: mail_gateway
|
|
199
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_layout_xmlid
|
|
200
|
-
msgid "Email Notification Layout"
|
|
201
|
-
msgstr ""
|
|
202
|
-
|
|
203
111
|
#. module: mail_gateway
|
|
204
112
|
#: model:ir.model,name:mail_gateway.model_mail_thread
|
|
205
113
|
msgid "Email Thread"
|
|
206
114
|
msgstr "Hilo de mensajes"
|
|
207
115
|
|
|
208
|
-
#. module: mail_gateway
|
|
209
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__email_from
|
|
210
|
-
msgid ""
|
|
211
|
-
"Email address of the sender. This field is set when no matching partner is "
|
|
212
|
-
"found and replaces the author_id field in the chatter."
|
|
213
|
-
msgstr ""
|
|
214
|
-
|
|
215
116
|
#. module: mail_gateway
|
|
216
117
|
#: model:ir.model.fields,help:mail_gateway.field_mail_notification__gateway_failure_reason
|
|
217
118
|
msgid ""
|
|
@@ -229,11 +130,6 @@ msgstr ""
|
|
|
229
130
|
msgid "Find a gateway channel..."
|
|
230
131
|
msgstr ""
|
|
231
132
|
|
|
232
|
-
#. module: mail_gateway
|
|
233
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__email_from
|
|
234
|
-
msgid "From"
|
|
235
|
-
msgstr ""
|
|
236
|
-
|
|
237
133
|
#. module: mail_gateway
|
|
238
134
|
#: model:ir.actions.act_window,name:mail_gateway.mail_gateway_act_window
|
|
239
135
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_channel__gateway_id
|
|
@@ -319,7 +215,6 @@ msgstr ""
|
|
|
319
215
|
#. module: mail_gateway
|
|
320
216
|
#. odoo-javascript
|
|
321
217
|
#: code:addons/mail_gateway/static/src/components/chatter/chatter.xml:0
|
|
322
|
-
#: code:addons/mail_gateway/static/src/models/composer_view.esm.js:0
|
|
323
218
|
#, python-format
|
|
324
219
|
msgid "Gateway message"
|
|
325
220
|
msgstr ""
|
|
@@ -329,11 +224,6 @@ msgstr ""
|
|
|
329
224
|
msgid "Gateway related Token"
|
|
330
225
|
msgstr ""
|
|
331
226
|
|
|
332
|
-
#. module: mail_gateway
|
|
333
|
-
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_compose_gateway_message_form_view
|
|
334
|
-
msgid "Gateways"
|
|
335
|
-
msgstr ""
|
|
336
|
-
|
|
337
227
|
#. module: mail_gateway
|
|
338
228
|
#: model:ir.model,name:mail_gateway.model_mail_guest
|
|
339
229
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__guest_id
|
|
@@ -346,7 +236,6 @@ msgid "Has New Channel Security"
|
|
|
346
236
|
msgstr ""
|
|
347
237
|
|
|
348
238
|
#. module: mail_gateway
|
|
349
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__id
|
|
350
239
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__id
|
|
351
240
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__id
|
|
352
241
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__id
|
|
@@ -355,13 +244,6 @@ msgstr ""
|
|
|
355
244
|
msgid "ID"
|
|
356
245
|
msgstr ""
|
|
357
246
|
|
|
358
|
-
#. module: mail_gateway
|
|
359
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__mass_mailing_name
|
|
360
|
-
msgid ""
|
|
361
|
-
"If set, a mass mailing will be created so that you can track its results in "
|
|
362
|
-
"the Email Marketing app."
|
|
363
|
-
msgstr ""
|
|
364
|
-
|
|
365
247
|
#. module: mail_gateway
|
|
366
248
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
367
249
|
msgid "Integrate Webhook"
|
|
@@ -377,11 +259,6 @@ msgstr ""
|
|
|
377
259
|
msgid "Integrated Webhook State"
|
|
378
260
|
msgstr ""
|
|
379
261
|
|
|
380
|
-
#. module: mail_gateway
|
|
381
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__is_mail_template_editor
|
|
382
|
-
msgid "Is Editor"
|
|
383
|
-
msgstr ""
|
|
384
|
-
|
|
385
262
|
#. module: mail_gateway
|
|
386
263
|
#: model:ir.model.fields,help:mail_gateway.field_mail_channel__gateway_token
|
|
387
264
|
#: model:ir.model.fields,help:mail_gateway.field_mail_gateway__token
|
|
@@ -401,12 +278,6 @@ msgid ""
|
|
|
401
278
|
msgstr ""
|
|
402
279
|
|
|
403
280
|
#. module: mail_gateway
|
|
404
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__lang
|
|
405
|
-
msgid "Language"
|
|
406
|
-
msgstr ""
|
|
407
|
-
|
|
408
|
-
#. module: mail_gateway
|
|
409
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message____last_update
|
|
410
281
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway____last_update
|
|
411
282
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage____last_update
|
|
412
283
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link____last_update
|
|
@@ -416,7 +287,6 @@ msgid "Last Modified on"
|
|
|
416
287
|
msgstr ""
|
|
417
288
|
|
|
418
289
|
#. module: mail_gateway
|
|
419
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__write_uid
|
|
420
290
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__write_uid
|
|
421
291
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__write_uid
|
|
422
292
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__write_uid
|
|
@@ -426,7 +296,6 @@ msgid "Last Updated by"
|
|
|
426
296
|
msgstr ""
|
|
427
297
|
|
|
428
298
|
#. module: mail_gateway
|
|
429
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__write_date
|
|
430
299
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__write_date
|
|
431
300
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__write_date
|
|
432
301
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_link__write_date
|
|
@@ -459,21 +328,6 @@ msgstr ""
|
|
|
459
328
|
msgid "Link to thread"
|
|
460
329
|
msgstr ""
|
|
461
330
|
|
|
462
|
-
#. module: mail_gateway
|
|
463
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__is_log
|
|
464
|
-
msgid "Log as Internal Note"
|
|
465
|
-
msgstr ""
|
|
466
|
-
|
|
467
|
-
#. module: mail_gateway
|
|
468
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mail_activity_type_id
|
|
469
|
-
msgid "Mail Activity Type"
|
|
470
|
-
msgstr ""
|
|
471
|
-
|
|
472
|
-
#. module: mail_gateway
|
|
473
|
-
#: model:ir.model,name:mail_gateway.model_mail_compose_gateway_message
|
|
474
|
-
msgid "Mail Compose Gateway Message"
|
|
475
|
-
msgstr ""
|
|
476
|
-
|
|
477
331
|
#. module: mail_gateway
|
|
478
332
|
#: model:ir.model,name:mail_gateway.model_mail_gateway
|
|
479
333
|
msgid "Mail Gateway"
|
|
@@ -489,18 +343,6 @@ msgstr ""
|
|
|
489
343
|
msgid "Mail Message Gateway Send"
|
|
490
344
|
msgstr ""
|
|
491
345
|
|
|
492
|
-
#. module: mail_gateway
|
|
493
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mailing_list_ids
|
|
494
|
-
msgid "Mailing List"
|
|
495
|
-
msgstr ""
|
|
496
|
-
|
|
497
|
-
#. module: mail_gateway
|
|
498
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to_force_new
|
|
499
|
-
msgid ""
|
|
500
|
-
"Manage answers as new incoming emails instead of replies going to the same "
|
|
501
|
-
"thread."
|
|
502
|
-
msgstr ""
|
|
503
|
-
|
|
504
346
|
#. module: mail_gateway
|
|
505
347
|
#. odoo-javascript
|
|
506
348
|
#: code:addons/mail_gateway/static/src/models/channel_member_view.esm.js:0
|
|
@@ -508,21 +350,6 @@ msgstr ""
|
|
|
508
350
|
msgid "Manage guest"
|
|
509
351
|
msgstr ""
|
|
510
352
|
|
|
511
|
-
#. module: mail_gateway
|
|
512
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mass_mailing_id
|
|
513
|
-
msgid "Mass Mailing"
|
|
514
|
-
msgstr ""
|
|
515
|
-
|
|
516
|
-
#. module: mail_gateway
|
|
517
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__campaign_id
|
|
518
|
-
msgid "Mass Mailing Campaign"
|
|
519
|
-
msgstr ""
|
|
520
|
-
|
|
521
|
-
#. module: mail_gateway
|
|
522
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mass_mailing_name
|
|
523
|
-
msgid "Mass Mailing Name"
|
|
524
|
-
msgstr ""
|
|
525
|
-
|
|
526
353
|
#. module: mail_gateway
|
|
527
354
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__member_ids
|
|
528
355
|
msgid "Member"
|
|
@@ -550,18 +377,6 @@ msgstr ""
|
|
|
550
377
|
msgid "Message Notifications"
|
|
551
378
|
msgstr ""
|
|
552
379
|
|
|
553
|
-
#. module: mail_gateway
|
|
554
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__record_name
|
|
555
|
-
msgid "Message Record Name"
|
|
556
|
-
msgstr ""
|
|
557
|
-
|
|
558
|
-
#. module: mail_gateway
|
|
559
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__message_type
|
|
560
|
-
msgid ""
|
|
561
|
-
"Message type: email for email message, notification for system message, "
|
|
562
|
-
"comment for other messages such as user replies"
|
|
563
|
-
msgstr ""
|
|
564
|
-
|
|
565
380
|
#. module: mail_gateway
|
|
566
381
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_gateway__name
|
|
567
382
|
#: model:ir.model.fields,field_description:mail_gateway.field_res_partner_gateway_channel__name
|
|
@@ -580,56 +395,12 @@ msgstr ""
|
|
|
580
395
|
msgid "Notification Type"
|
|
581
396
|
msgstr ""
|
|
582
397
|
|
|
583
|
-
#. module: mail_gateway
|
|
584
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__notify
|
|
585
|
-
msgid "Notify followers"
|
|
586
|
-
msgstr ""
|
|
587
|
-
|
|
588
|
-
#. module: mail_gateway
|
|
589
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__notify
|
|
590
|
-
msgid "Notify followers of the document (mass post only)"
|
|
591
|
-
msgstr ""
|
|
592
|
-
|
|
593
|
-
#. module: mail_gateway
|
|
594
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__object_attachment_ids
|
|
595
|
-
msgid "Object Attachments"
|
|
596
|
-
msgstr ""
|
|
597
|
-
|
|
598
|
-
#. module: mail_gateway
|
|
599
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__lang
|
|
600
|
-
msgid ""
|
|
601
|
-
"Optional translation language (ISO code) to select when sending out an "
|
|
602
|
-
"email. If not set, the english version will be used. This should usually be "
|
|
603
|
-
"a placeholder expression that provides the appropriate language, e.g. "
|
|
604
|
-
"{{ object.partner_id.lang }}."
|
|
605
|
-
msgstr ""
|
|
606
|
-
|
|
607
|
-
#. module: mail_gateway
|
|
608
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to_mode
|
|
609
|
-
msgid ""
|
|
610
|
-
"Original Discussion: Answers go in the original document discussion "
|
|
611
|
-
"thread. \n"
|
|
612
|
-
" Another Email Address: Answers go to the email address mentioned in the "
|
|
613
|
-
"tracking message-id instead of original document discussion thread. \n"
|
|
614
|
-
" This has an impact on the generated message-id."
|
|
615
|
-
msgstr ""
|
|
616
|
-
|
|
617
398
|
#. module: mail_gateway
|
|
618
399
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_mail__gateway_message_id
|
|
619
400
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message__gateway_message_id
|
|
620
401
|
msgid "Original gateway message"
|
|
621
402
|
msgstr ""
|
|
622
403
|
|
|
623
|
-
#. module: mail_gateway
|
|
624
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__mail_server_id
|
|
625
|
-
msgid "Outgoing mail server"
|
|
626
|
-
msgstr ""
|
|
627
|
-
|
|
628
|
-
#. module: mail_gateway
|
|
629
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__parent_id
|
|
630
|
-
msgid "Parent Message"
|
|
631
|
-
msgstr ""
|
|
632
|
-
|
|
633
404
|
#. module: mail_gateway
|
|
634
405
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_guest_manage__partner_id
|
|
635
406
|
#: model:ir.model.fields,field_description:mail_gateway.field_mail_message_gateway_send__partner_id
|
|
@@ -652,43 +423,11 @@ msgstr ""
|
|
|
652
423
|
msgid "Record reference"
|
|
653
424
|
msgstr ""
|
|
654
425
|
|
|
655
|
-
#. module: mail_gateway
|
|
656
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__res_id
|
|
657
|
-
msgid "Related Document ID"
|
|
658
|
-
msgstr ""
|
|
659
|
-
|
|
660
|
-
#. module: mail_gateway
|
|
661
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__model
|
|
662
|
-
msgid "Related Document Model"
|
|
663
|
-
msgstr ""
|
|
664
|
-
|
|
665
426
|
#. module: mail_gateway
|
|
666
427
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
667
428
|
msgid "Remove Webhook"
|
|
668
429
|
msgstr ""
|
|
669
430
|
|
|
670
|
-
#. module: mail_gateway
|
|
671
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__render_model
|
|
672
|
-
msgid "Rendering Model"
|
|
673
|
-
msgstr ""
|
|
674
|
-
|
|
675
|
-
#. module: mail_gateway
|
|
676
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to_mode
|
|
677
|
-
msgid "Replies"
|
|
678
|
-
msgstr ""
|
|
679
|
-
|
|
680
|
-
#. module: mail_gateway
|
|
681
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__reply_to
|
|
682
|
-
msgid "Reply To"
|
|
683
|
-
msgstr ""
|
|
684
|
-
|
|
685
|
-
#. module: mail_gateway
|
|
686
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__reply_to
|
|
687
|
-
msgid ""
|
|
688
|
-
"Reply email address. Setting the reply_to bypasses the automatic thread "
|
|
689
|
-
"creation."
|
|
690
|
-
msgstr ""
|
|
691
|
-
|
|
692
431
|
#. module: mail_gateway
|
|
693
432
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_message_gateway_send_form_view
|
|
694
433
|
msgid "Send"
|
|
@@ -702,33 +441,16 @@ msgstr ""
|
|
|
702
441
|
#. module: mail_gateway
|
|
703
442
|
#. odoo-javascript
|
|
704
443
|
#: code:addons/mail_gateway/static/src/models/message_action_view.esm.js:0
|
|
444
|
+
#: code:addons/mail_gateway/static/src/models/message_action_view.esm.js:0
|
|
705
445
|
#, python-format
|
|
706
446
|
msgid "Send with gateway"
|
|
707
447
|
msgstr ""
|
|
708
448
|
|
|
709
|
-
#. module: mail_gateway
|
|
710
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__subject
|
|
711
|
-
msgid "Subject"
|
|
712
|
-
msgstr ""
|
|
713
|
-
|
|
714
|
-
#. module: mail_gateway
|
|
715
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__subtype_id
|
|
716
|
-
msgid "Subtype"
|
|
717
|
-
msgstr ""
|
|
718
|
-
|
|
719
449
|
#. module: mail_gateway
|
|
720
450
|
#: model:ir.model,name:mail_gateway.model_res_partner_gateway_channel
|
|
721
451
|
msgid "Technical data used to get the gateway author"
|
|
722
452
|
msgstr ""
|
|
723
453
|
|
|
724
|
-
#. module: mail_gateway
|
|
725
|
-
#: model:ir.model.fields,help:mail_gateway.field_mail_compose_gateway_message__auto_delete
|
|
726
|
-
msgid ""
|
|
727
|
-
"This option permanently removes any track of email after it's been sent, "
|
|
728
|
-
"including from the Technical menu in the Settings, in order to preserve "
|
|
729
|
-
"storage space of your Odoo database."
|
|
730
|
-
msgstr ""
|
|
731
|
-
|
|
732
454
|
#. module: mail_gateway
|
|
733
455
|
#. odoo-javascript
|
|
734
456
|
#: code:addons/mail_gateway/static/src/components/composer/composer.xml:0
|
|
@@ -746,26 +468,11 @@ msgstr ""
|
|
|
746
468
|
msgid "Token must be unique"
|
|
747
469
|
msgstr ""
|
|
748
470
|
|
|
749
|
-
#. module: mail_gateway
|
|
750
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__message_type
|
|
751
|
-
msgid "Type"
|
|
752
|
-
msgstr ""
|
|
753
|
-
|
|
754
471
|
#. module: mail_gateway
|
|
755
472
|
#: model_terms:ir.ui.view,arch_db:mail_gateway.mail_gateway_form_view
|
|
756
473
|
msgid "Update Webhook"
|
|
757
474
|
msgstr ""
|
|
758
475
|
|
|
759
|
-
#. module: mail_gateway
|
|
760
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__use_active_domain
|
|
761
|
-
msgid "Use active domain"
|
|
762
|
-
msgstr ""
|
|
763
|
-
|
|
764
|
-
#. module: mail_gateway
|
|
765
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__template_id
|
|
766
|
-
msgid "Use template"
|
|
767
|
-
msgstr ""
|
|
768
|
-
|
|
769
476
|
#. module: mail_gateway
|
|
770
477
|
#: model:ir.model,name:mail_gateway.model_res_users
|
|
771
478
|
#: model:res.groups,name:mail_gateway.gateway_user
|
|
@@ -808,16 +515,6 @@ msgid ""
|
|
|
808
515
|
"When checked, channels are not created automatically. Usable on Telegram"
|
|
809
516
|
msgstr ""
|
|
810
517
|
|
|
811
|
-
#. module: mail_gateway
|
|
812
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__wizard_channel_ids
|
|
813
|
-
msgid "Wizard Channel"
|
|
814
|
-
msgstr ""
|
|
815
|
-
|
|
816
|
-
#. module: mail_gateway
|
|
817
|
-
#: model:ir.model.fields,field_description:mail_gateway.field_mail_compose_gateway_message__wizard_partner_ids
|
|
818
|
-
msgid "Wizard Partner"
|
|
819
|
-
msgstr ""
|
|
820
|
-
|
|
821
518
|
#. module: mail_gateway
|
|
822
519
|
#. odoo-javascript
|
|
823
520
|
#: code:addons/mail_gateway/static/src/components/message/message.xml:0
|