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.
35 lines
1.6 KiB
35 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inheriting the configuration settings and add the fastest methods to
|
|
choose option for user-->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.voice.text
|
|
</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id"
|
|
ref="base.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@id='invite_users']" position="after">
|
|
<div id="choose">
|
|
<h2>Speech to Text</h2>
|
|
<div class="row mt16 o_settings_container">
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_right_pane">
|
|
<label for="select_fastest_methode"
|
|
string="Choose your way"/>
|
|
<div class="text-muted">
|
|
Depending on the browser the speech to text
|
|
conversion speed may change.Choose Your
|
|
browser.
|
|
</div>
|
|
<field name='select_fastest_methode'
|
|
class="w-auto ps-3 fw-bold"
|
|
widget="radio"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|