Set of label improvements to Open ERP Server.
[odoo/odoo.git] / bin / addons / base / module / wizard / wizard_module_lang_install.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import wizard
24 import tools
25 import pooler
26
27 view_form_end = """<?xml version="1.0"?>
28 <form string="Language file loaded.">
29     <image name="gtk-dialog-info" colspan="2"/>
30     <group colspan="2" col="4">
31         <separator string="Installation Done" colspan="4"/>
32         <label align="0.0" string="The selected language has been successfully installed.\nYou must change the preferences of the user and open a new menu to view changes." colspan="4"/>
33     </group>
34 </form>"""
35
36 view_form = """<?xml version="1.0"?>
37 <form string="System Upgrade">
38     <image name="gtk-dialog-info" colspan="2"/>
39     <group colspan="2" col="4">
40     <separator string="System Upgrade" colspan="4"/>
41         <label align="0.0" string="Choose a language to install:" colspan="4"/>
42         <field name="lang" colspan="4" required="1"/>
43         <label align="0.0" string="Note that this operation may take a few minutes." colspan="4"/>
44     </group>
45 </form>"""
46
47
48 class wizard_lang_install(wizard.interface):
49     def _lang_install(self, cr, uid, data, context):
50         lang = data['form']['lang']
51         if lang:
52             modobj = pooler.get_pool(cr.dbname).get('ir.module.module')
53             mids = modobj.search(cr, uid, [('state', '=', 'installed')])
54             modobj.update_translations(cr, uid, mids, lang)
55         return {}
56
57     fields_form = {
58         'lang': {'string':'Language', 'type':'selection', 'selection':tools.scan_languages(),
59         },
60     }
61
62     states = {
63         'init': {
64             'actions': [],
65             'result': {'type': 'form', 'arch': view_form, 'fields': fields_form,
66                 'state': [
67                     ('end', 'Cancel', 'gtk-cancel'),
68                     ('start', 'Start installation', 'gtk-ok', True)
69                 ]
70             }
71         },
72         'start': {
73             'actions': [_lang_install],
74             'result': {'type': 'form', 'arch': view_form_end, 'fields': {},
75                 'state': [
76                     ('end', 'Ok', 'gtk-ok', True)
77                 ]
78             }
79         },
80     }
81 wizard_lang_install('module.lang.install')
82
83
84 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
85