From db699e86b46e1ba2e3ef9e6150f1303a87b73ae7 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 21 Apr 2016 14:15:34 +0200 Subject: [PATCH] [FIX] mail: Missing translation `Send a message to the group` The above string was not translated, when creating a new discussion group, in the group message input placeholder. opw-673712 --- addons/mail/mail_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/mail_group.py b/addons/mail/mail_group.py index 6259887a1e5..14cfb38afd5 100644 --- a/addons/mail/mail_group.py +++ b/addons/mail/mail_group.py @@ -153,7 +153,7 @@ class mail_group(osv.Model): 'thread_level': 1, 'header_description': self._generate_header_description(cr, uid, group, context=context), 'view_mailbox': True, - 'compose_placeholder': 'Send a message to the group', + 'compose_placeholder': _('Send a message to the group'), } cobj = self.pool.get('ir.actions.client') newref = cobj.copy(cr, SUPERUSER_ID, ref[1], default={'params': str(params), 'name': vals['name']}, context=context)