[IMP]rename translate into translateble in ir model

bzr revid: sgo@tinyerp.com-20120703065321-atmoxi4i262jeayq
This commit is contained in:
Sanjay Gohel (Open ERP) 2012-07-03 12:23:21 +05:30
parent bd7dde4dbb
commit 6934080a3c
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ class ir_model_fields(osv.osv):
'required': fields.boolean('Required'),
'readonly': fields.boolean('Readonly'),
'select_level': fields.selection([('0','Not Searchable'),('1','Always Searchable'),('2','Advanced Search (deprecated)')],'Searchable', required=True),
'translate': fields.boolean('Translate', help="Whether values for this field can be translated (enables the translation mechanism for that field)"),
'translate': fields.boolean('Translatable', help="Whether values for this field can be translated (enables the translation mechanism for that field)"),
'size': fields.integer('Size'),
'state': fields.selection([('manual','Custom Field'),('base','Base Field')],'Type', required=True, readonly=True, select=1),
'on_delete': fields.selection([('cascade','Cascade'),('set null','Set NULL')], 'On Delete', help='On delete property for many2one fields'),