Skip to content
Snippets Groups Projects
Commit 59669e99 authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[FIX] phone_validation: add missing translation


An action name was not translated.

closes odoo/odoo#129508

Related: odoo/enterprise#44533
Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent ab42c572
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,12 @@ msgstr ""
msgid "Archived"
msgstr ""
#. module: phone_validation
#: code:addons/phone_validation/models/phone_blacklist.py:0
#, python-format
msgid "Are you sure you want to unblacklist this Phone Number?"
msgstr ""
#. module: phone_validation
#: model:ir.model.fields,field_description:phone_validation.field_mail_thread_phone__message_attachment_count
#: model:ir.model.fields,field_description:phone_validation.field_phone_blacklist__message_attachment_count
......
......@@ -119,7 +119,7 @@ class PhoneBlackList(models.Model):
def phone_action_blacklist_remove(self):
return {
'name': 'Are you sure you want to unblacklist this Phone Number?',
'name': _('Are you sure you want to unblacklist this Phone Number?'),
'type': 'ir.actions.act_window',
'view_mode': 'form',
'res_model': 'phone.blacklist.remove',
......
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