Skip to content
Snippets Groups Projects
Commit a0e94aa0 authored by std-odoo's avatar std-odoo
Browse files

[IMP] mass_mailing: reword the toast message when we import contacts


Task-2816679

closes odoo/odoo#87992

Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent 449a5892
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ class MailingContactImport(models.TransientModel):
'tag': 'display_notification',
'params': {
'message': (
_('%i contacts.', len(unique_contacts))
_('%i Contacts have been imported.', len(unique_contacts))
+ (_(' %i duplicates have been ignored.', ignored) if ignored else '')
),
'type': 'success',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment