25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="view_bulk_translate_wizard_form" model="ir.ui.view">
|
|
<field name="name">translation.bulk.translate.wizard.form</field>
|
|
<field name="model">otk.translation.bulk.translate</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Bulk translate">
|
|
<sheet>
|
|
<group>
|
|
<field invisible="1" name="model_id" />
|
|
<field options="{'no_create': True, 'no_open': True}" name="field_ids" widget="many2many_tags" />
|
|
<field options="{'no_create': True, 'no_open': True}" name="base_language_id" />
|
|
<field options="{'no_create': True, 'no_open': True}" name="target_language_ids" widget="many2many_tags" />
|
|
<field name="overwrite_existing" />
|
|
</group>
|
|
</sheet>
|
|
<footer>
|
|
<button string="Translate" name="action_translate" type="object" class="btn-primary"/>
|
|
<button string="Cancel" class="btn-secondary" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|