[IMP] french translation
[odoo/odoo.git] / addons / mrp / mrp_installer.xml
1 <openerp>
2   <data>
3     <record id="view_mrp_installer" model="ir.ui.view">
4       <field name="name">mrp.installer.view</field>
5       <field name="model">mrp.installer</field>
6       <field name="type">form</field>
7       <field name="inherit_id" ref="base.res_config_installer"/>
8       <field name="arch" type="xml">
9         <data>
10           <form position="attributes">
11             <attribute name="string">MRP Application Configuration</attribute>
12           </form>
13
14           <separator string="title" position="attributes">
15             <attribute name="string">Configure Your Manufacturing Resource Planning Application</attribute>
16           </separator>
17           <xpath expr="//label[@string='description']"
18                  position="attributes">
19             <attribute name="string">Add more functionalities to the core Manufacturing Application with the following addons.</attribute>
20           </xpath>
21           <xpath expr='//separator[@string="vsep"]' position='attributes'>
22                   <attribute name='string'></attribute>
23             </xpath>
24             <xpath expr="//button[@string='Install Modules']" position="attributes">
25                    <attribute name="string">Configure</attribute>
26           </xpath>
27           <group colspan="8">
28             <field name="stock_location"/>
29             <field name="mrp_jit"/>
30             <field name="mrp_operations"/>
31             <field name="mrp_subproduct"/>
32             <field name="mrp_repair"/>
33           </group>
34         </data>
35       </field>
36     </record>
37
38     <record id="action_mrp_installer" model="ir.actions.act_window">
39       <field name="name">MRP Applications Configuration</field>
40       <field name="type">ir.actions.act_window</field>
41       <field name="res_model">mrp.installer</field>
42       <field name="view_id" ref="view_mrp_installer"/>
43       <field name="view_type">form</field>
44       <field name="view_mode">form</field>
45       <field name="target">new</field>
46     </record>
47
48     <record id="mrp_installer_todo" model="ir.actions.todo">
49       <field name="action_id" ref="action_mrp_installer"/>
50       <field name="sequence">3</field>
51         <field name="restart">always</field>
52       <field name="groups_id" eval="[(6,0,[ref('base.group_extended')])]"/>
53     </record>
54
55   </data>
56 </openerp>