[FIX] field name and add translation

This commit is contained in:
David Beal
2015-07-23 15:48:19 +02:00
parent 03d5ad5406
commit 0af08e75f1
8 changed files with 133 additions and 19 deletions

View File

@@ -25,11 +25,11 @@ from openerp import models, fields
class IrActionsActwindow(models.Model):
_inherit = 'ir.actions.act_window'
owner_help = fields.Html(
string="Owner Help",
enduser_help = fields.Html(
string="End User Help",
help="Use this field to add custom content for documentation purpose\n"
"mainly for the ERP owner")
custom_help = fields.Text(
string="Custom Help",
"mainly by power users ")
advanced_help = fields.Text(
string="Advanced Help",
help="Use this field to add custom content for documentation purpose\n"
"mainly for module developers")
"mainly by developers")