[FIX] payment: help message not translatable

Payment info such as "You will be redirected to..." should be translatable.
opw 619786
This commit is contained in:
Martin Trigaux 2015-01-16 11:06:10 +01:00
parent 9d89b179c4
commit f37a40c4c0
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ class PaymentAcquirer(osv.Model):
'name': fields.char('Name', required=True),
'provider': fields.selection(_provider_selection, string='Provider', required=True),
'company_id': fields.many2one('res.company', 'Company', required=True),
'pre_msg': fields.html('Message', help='Message displayed to explain and help the payment process.'),
'pre_msg': fields.html('Message', translate=True,
help='Message displayed to explain and help the payment process.'),
'post_msg': fields.html('Thanks Message', help='Message displayed after having done the payment process.'),
'validation': fields.selection(
[('manual', 'Manual'), ('automatic', 'Automatic')],