~openerp-commiter/openobject-server/trunk-company-currency-currency-field-pna

« back to all changes in this revision

Viewing changes to openerp/addons/base/module/wizard/base_language_install_view.xml

  • Committer: pso (OpenERP)
  • Date: 2012-07-24 09:57:25 UTC
  • mfrom: (4246.3.18 trunk)
  • Revision ID: pso@tinyerp.com-20120724095725-3haoypbo7s6c8e2b
[MERGE] Merged with main branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
            <field name="type">form</field>
9
9
            <field name="arch" type="xml">
10
10
                <form string="Load a Translation" version="7.0">
11
 
                    <header>
12
 
                        <button name="lang_install" string="Load" type="object" states="init" class="oe_highlight"/>
13
 
                        <label string="or" states="init"/>
14
 
                        <button string="Cancel" class="oe_link" special="cancel"/>
15
 
                    </header>
16
 
                    <group colspan="4" col="8">
17
 
                        <group colspan="1">
18
 
                            <field name="config_logo" widget="image" width="220" height="130" nolabel="1" colspan="1"/>
19
 
                            <newline/>
20
 
                            <label colspan="4" width="220" string="This wizard helps you add a new language to your OpenERP system. After loading a new language it becomes available as default interface language for users and partners."/>
21
 
                            <label colspan="4" width="220"/>
22
 
                            <label colspan="4" width="220" string="Please be patient, this operation may take a few minutes (depending on the number of modules currently installed)..."/>
23
 
                            <field name="state" invisible="1"/>
24
 
                        </group>
25
 
                        <separator orientation="vertical" colspan="1" rowspan="12"/>
26
 
                        <group colspan="6">
27
 
                            <separator string="Load a Translation" colspan="4"/>
28
 
                            <group states="init" colspan="4">
29
 
                                <field name="lang" colspan="4"/>
30
 
                                <field name="overwrite" colspan="4" groups="base.group_no_one"/>
31
 
                            </group>
32
 
                            <group states="done" colspan="4">
33
 
                                <label string="The selected language has been successfully installed.
34
 
You must change the preferences of the user and open a new menu to view the changes." colspan="4"/>
35
 
                            </group>
36
 
                        </group>
37
 
                    </group>
 
11
                    <field name="state" invisible="1"/>
 
12
                    <group states="init">
 
13
                        <field name="lang"/>
 
14
                        <field name="overwrite" groups="base.group_no_one"/>
 
15
                    </group>
 
16
                    <group states="done" colspan="4">
 
17
                        <label string="The selected language has been successfully installed.
 
18
You must change the preferences of the user and open a new menu to view the changes."/>
 
19
                    </group>
 
20
                    <footer states="init">
 
21
                        <button name="lang_install" string="Load" type="object" class="oe_highlight"/> or 
 
22
                        <button special="cancel" string="Cancel" class="oe_link"/>
 
23
                    </footer>
 
24
                    <footer states="done">
 
25
                        <button special="cancel" string="Close"/>
 
26
                    </footer>
38
27
                </form>
39
28
           </field>
40
29
        </record>
49
38
        </record>
50
39
 
51
40
        <menuitem
52
 
        name="Load a Translation"
53
 
        action="action_view_base_language_install"
54
 
        id="menu_view_base_language_install"
55
 
        parent="menu_translation" sequence="2"/>
 
41
            name="Load a Translation"
 
42
            action="action_view_base_language_install"
 
43
            id="menu_view_base_language_install"
 
44
            parent="menu_translation" sequence="2"/>
56
45
    </data>
57
46
</openerp>
58
47