From: Xavier Morel Date: Tue, 12 Oct 2010 16:23:48 +0000 (+0200) Subject: [IMP] labelling of read field on res.log X-Git-Tag: 6.0.0-rc1-server~87^2~2 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=727c9f171abec26a4824cfa742205cb23943fc88;p=odoo%2Fodoo.git [IMP] labelling of read field on res.log bzr revid: xmo@openerp.com-20101012162348-94jbd5ufwgh1cm5c --- diff --git a/bin/addons/base/res/res_log.py b/bin/addons/base/res/res_log.py index 8d5f501..e475f2f 100644 --- a/bin/addons/base/res/res_log.py +++ b/bin/addons/base/res/res_log.py @@ -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,