Missing label for 'advice' field in 'wizard_export_lang'

bzr revid: olt@tinyerp.com-20090126115742-jx5qbnrlir3g3rwe
This commit is contained in:
Olivier Laurent 2009-01-26 12:57:42 +01:00
parent 9bafcadb9c
commit 9223103c89
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class wizard_export_lang(osv.osv_memory):
'format': fields.selection( ( ('csv','CSV File'), ('po','PO File'), ('tgz', 'TGZ Archive')), 'File Format', required=True),
'modules': fields.many2many('ir.module.module', 'rel_modules_langexport', 'wiz_id', 'module_id', 'Modules', domain=[('state','=','installed')]),
'data': fields.binary('File', readonly=True),
'advice': fields.text('', readonly=True),
'advice': fields.text('Advice', readonly=True),
'state': fields.selection( ( ('choose','choose'), # choose language
('get','get'), # get the file
) ),