Skip to content
Snippets Groups Projects
Commit 28e71c7e authored by Olivier Dony's avatar Olivier Dony
Browse files

[FIX] base_language_install wizard: spellchecking

bzr revid: odo@openerp.com-20101017185510-l4d0zvnd227cy0yo
parent 3ab81c05
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment