You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record model="ir.ui.view" id="email_compose_message_wizard_inherit_form_lang">
|
|
<field name="name">mail.compose.message.form.lang</field>
|
|
<field name="model">mail.compose.message</field>
|
|
<field name="inherit_id" ref="mail.email_compose_message_wizard_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='template_id']/.." position="before">
|
|
<span attrs="{'invisible': [('template_id', '=', False)]}">
|
|
<label for="lang"/>
|
|
<field name="lang"
|
|
class="oe_inline"
|
|
options="{'no_create': True}"
|
|
/>
|
|
<span class="alert alert-warning" attrs="{'invisible': [('lang', '=', False)]}">
|
|
<i class="fa fa-exclamation-triangle"/> Attached documents will not be translated.
|
|
</span>
|
|
</span>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|