[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
This commit is contained in:
Denis Ledoux 2016-04-21 14:15:34 +02:00
parent d951a7d5ee
commit db699e86b4
1 changed files with 1 additions and 1 deletions

View File

@ -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)