[IMP] add translate true on name filed of note stage.

bzr revid: nco@tinyerp.com-20121102114241-qq4g3rc0hwtcuq3e
This commit is contained in:
Nimesh (Open ERP) 2012-11-02 17:12:41 +05:30
parent b57ed69d12
commit f11b8c3b01
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class note_stage(osv.osv):
_name = "note.stage"
_description = "Note Stage"
_columns = {
'name': fields.char('Stage Name', required=True),
'name': fields.char('Stage Name', translate=True, required=True),
'sequence': fields.integer('Sequence', help="Used to order the note stages"),
'user_id': fields.many2one('res.users', 'Owner', help="Owner of the note stage.", required=True),
'fold': fields.boolean('Folded by Default'),