mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
7cdb6d2ab7
Themes translation in Odoo 16 have been lost, they were not exported on Transifex anymore (bug). We just added back the repository on it, and our internal translators are working on those translations. They found some typos and bad wording which are fixed here. Technically, note that we need the themes fully translated for the chatGPT integration coming in website configurator. Indeed, if a theme is not (almost fully) translated, it won't be using chatGPT for text replacement. This is because if we ask chatGPT to do text replacement and translation at the same time, it just provides bad results. See https://github.com/odoo/odoo/pull/137703 closes odoo/design-themes#717 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_banner" inherit_id="website.s_banner">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="pt256 pb48" remove="pt96 pb96" separator=" "/>
|
|
<attribute name="data-oe-shape-data">{"shape":"web_editor/Origins/04_001","flip":["y"]}</attribute>
|
|
</xpath>
|
|
<xpath expr="//*[hasclass('container')]" position="before">
|
|
<div class="o_we_shape o_web_editor_Origins_04_001 o_we_flip_y"/>
|
|
</xpath>
|
|
<!-- Column -->
|
|
<xpath expr="//*[hasclass('col-lg-6')]" position="attributes">
|
|
<attribute name="class" add="col-lg-8 pt48 px-5" remove="col-lg-6 pt32" separator=" "/>
|
|
<attribute name="style" add="box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px 0px !important;"/>
|
|
</xpath>
|
|
<!-- Title -->
|
|
<xpath expr="//h1" position="replace" mode="inner">
|
|
<b>Software innovation</b><br/> at its best.
|
|
</xpath>
|
|
<!-- Text -->
|
|
<xpath expr="//p" position="replace">
|
|
<p class="lead">Harness the power of disruptive technologies to increase<br/> your day-to-day business operations.</p>
|
|
</xpath>
|
|
<xpath expr="//p" position="after">
|
|
<p><br/></p>
|
|
</xpath>
|
|
<!-- Buttons -->
|
|
<xpath expr="//a//t" position="replace" mode="inner">
|
|
Our Solutions
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|