~openerp-groupes/openobject-server/6.0-fix-setup-windows

« back to all changes in this revision

Viewing changes to bin/addons/base/module/wizard/wizard_import_lang.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-3f10ee12cea3c4c75cef44ab04ad33ef47432907
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: iso-8859-1 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
5
#                    Fabien Pinckaers <fp@tiny.Be>
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 2
 
17
# of the License, or (at your option) any later version.
 
18
#
 
19
# This program is distributed in the hope that it will be useful,
 
20
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
# GNU General Public License for more details.
 
23
#
 
24
# You should have received a copy of the GNU General Public License
 
25
# along with this program; if not, write to the Free Software
 
26
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
#
 
28
##############################################################################
 
29
 
 
30
import wizard
 
31
import tools
 
32
import base64
 
33
import pooler
 
34
 
 
35
view_form="""<?xml version="1.0"?>
 
36
<form string="Import language">
 
37
        <image name="gtk-info" size="64" colspan="2"/>
 
38
        <group colspan="2" col="4">
 
39
                <separator string="Import new language" colspan="4"/>
 
40
                <field name="name"/>
 
41
                <field name="code"/>
 
42
                <field name="data" colspan="3"/>
 
43
                <label string="You have to import a .CSV file wich is encoded in UTF-8.\nPlease check that the first line of your file is:" colspan="4" align="0.0"/>
 
44
                <label string="type,name,res_id,src,value" colspan="4"/>
 
45
        </group>
 
46
</form>"""
 
47
 
 
48
class wizard_import_lang(wizard.interface):
 
49
        def _import_lang(self, cr, uid, data, context):
 
50
                form=data['form']
 
51
                lang_obj=pooler.get_pool(cr.dbname).get('res.lang')
 
52
                ids=lang_obj.search(cr, uid, [('code', '=', form['code'])])
 
53
                if ids:
 
54
                        lang_obj.write(cr, uid, ids, {'name': form['name']})
 
55
                else:
 
56
                        lang_obj.create(cr, uid, {'code': form['code'], 'name': form['name']})
 
57
                buf=base64.decodestring(data['form']['data']).split('\n')
 
58
                tools.trans_load_data(cr.dbname, buf, data['form']['code'])
 
59
                return {}
 
60
        fields_form={
 
61
                'name':{'string':'Language name', 'type':'char', 'size':64, 'required':True},
 
62
                'code':{'string':'Code (eg:en_US)', 'type':'char', 'size':5, 'required':True},
 
63
                'data':{'string':'File', 'type':'binary', 'required':True},
 
64
        }
 
65
        states={
 
66
                'init':{
 
67
                        'actions':[],
 
68
                        'result':{'type':'form', 'arch':view_form, 'fields':fields_form, 'state':[('end', 'Cancel', 'gtk-cancel'), ('finish', 'Ok', 'gtk-ok')]}
 
69
                },
 
70
                'finish':{
 
71
                        'actions':[],
 
72
                        'result':{'type':'action', 'action':_import_lang, 'state':'end'}
 
73
                },
 
74
        }
 
75
wizard_import_lang('module.lang.import')