[FIX] email.template: body_html should be translatable

bzr revid: odo@openerp.com-20120309160625-kwp4pof4vm7aci2g
This commit is contained in:
Olivier Dony 2012-03-09 17:06:25 +01:00
parent 4677653371
commit d55eff4218
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class email_template(osv.osv):
help="Optional preferred server for outgoing mails. If not set, the highest "
"priority one will be used."),
'body_text': fields.text('Text contents', translate=True, help="Plaintext version of the message (placeholders may be used here)"),
'body_html': fields.text('Rich-text contents', help="Rich-text/HTML version of the message (placeholders may be used here)"),
'body_html': fields.text('Rich-text contents', translate=True, help="Rich-text/HTML version of the message (placeholders may be used here)"),
'message_id': fields.char('Message-Id', size=256, help="Message-ID SMTP header to use in outgoing messages based on this template. "
"Please note that this overrides the 'Resource Tracking' option, "
"so if you simply need to track replies to outgoing emails, enable "