[IMP] labelling of read field on res.log
authorXavier Morel <xmo@openerp.com>
Tue, 12 Oct 2010 16:23:48 +0000 (18:23 +0200)
committerXavier Morel <xmo@openerp.com>
Tue, 12 Oct 2010 16:23:48 +0000 (18:23 +0200)
bzr revid: xmo@openerp.com-20101012162348-94jbd5ufwgh1cm5c

bin/addons/base/res/res_log.py

index 8d5f501..e475f2f 100644 (file)
@@ -33,7 +33,7 @@ class res_log(osv.osv_memory):
         'res_id': fields.integer('Object ID'),
         'secondary': fields.boolean('Secondary Log', help='Do not display this log if it belongs to the same object the user is working on'),
         'create_date': fields.datetime('Created Date', readonly=True),
-        'read': fields.boolean('Read status', help="If this log item has been read, get() should not send it to the client")
+        'read': fields.boolean('Read', help="If this log item has been read, get() should not send it to the client")
     }
     _defaults = {
         'user_id': lambda self,cr,uid,ctx: uid,