From 76ca2a71349658c36ee9131775a5a3f5eeba5de2 Mon Sep 17 00:00:00 2001 From: "Vir (Open ERP)" Date: Tue, 21 Sep 2010 11:54:11 +0530 Subject: [PATCH] [IMP] auditrails : improved tooltip bzr revid: vir@tinyerp.com-20100921062411-w7z3umutvjwgq3n7 --- addons/audittrail/audittrail.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/audittrail/audittrail.py b/addons/audittrail/audittrail.py index d337e89fc60..dd843449c8c 100644 --- a/addons/audittrail/audittrail.py +++ b/addons/audittrail/audittrail.py @@ -38,12 +38,12 @@ class audittrail_rule(osv.osv): "object_id": fields.many2one('ir.model', 'Object', required=True, help="Select object for which you want to generate log."), "user_id": fields.many2many('res.users', 'audittail_rules_users', 'user_id', 'rule_id', 'Users', help="if User is not added then it will applicable for all users"), - "log_read": fields.boolean("Log Reads", help="If this field is check then open record's log will be generated."), - "log_write": fields.boolean("Log Writes", help="If this field is check then modified record's log will be generated."), - "log_unlink": fields.boolean("Log Deletes", help="If this field is check then delete record's log will be generated."), - "log_create": fields.boolean("Log Creates",help="If this field is check then newly created Record's log will be generated."), - "log_action": fields.boolean("Log Action",help="If this field is check then activate action's log will be generated."), - "log_workflow": fields.boolean("Log Workflow",help="If this field is check then define workflow's log will be generated."), + "log_read": fields.boolean("Log Reads", help="Select this if you want to keep track of read/open on any record of the object of this rule"), + "log_write": fields.boolean("Log Writes", help="Select this if you want to keep track of modification on any record of the object of this rule"), + "log_unlink": fields.boolean("Log Deletes", help="Select this if you want to keep track of deletion on any record of the object of this rule"), + "log_create": fields.boolean("Log Creates",help="Select this if you want to keep track of creation on any record of the object of this rule"), + "log_action": fields.boolean("Log Action",help="Select this if you want to keep track of actions on the object of this rule"), + "log_workflow": fields.boolean("Log Workflow",help="Select this if you want to keep track of workflow on any record of the object of this rule"), "state": fields.selection((("draft", "Draft"), ("subscribed", "Subscribed")), "State", required=True),