[FIX] base_language_install wizard: spellchecking

bzr revid: odo@openerp.com-20101017185510-l4d0zvnd227cy0yo
This commit is contained in:
Olivier Dony 2010-10-17 20:55:10 +02:00
parent 3ab81c0544
commit 28e71c7e17
1 changed files with 2 additions and 2 deletions

View File

@ -31,10 +31,10 @@ class base_language_install(osv.osv_memory):
_columns = {
'lang': fields.selection(tools.scan_languages(),'Language', required=True),
'overwrite': fields.boolean('Overwrite Existing Terms', help="If you check this box, your customized translations will be overwrited and replaced by the official ones."),
'overwrite': fields.boolean('Overwrite Existing Terms', help="If you check this box, your customized translations will be overwritten and replaced by the official ones."),
'state':fields.selection([('init','init'),('done','done')], 'state', readonly=True),
}
_defaults = {
_defaults = {
'state': 'init',
'overwrite': False
}