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>
30 lines
968 B
XML
30 lines
968 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_cover" inherit_id="website.s_cover">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="o_full_screen_height pt232" remove="pt96" separator=" "/>
|
|
</xpath>
|
|
<!-- Title -->
|
|
<xpath expr="//h1" position="replace" mode="inner">
|
|
<b>Bringing life to your interior</b>
|
|
</xpath>
|
|
<!-- Paragraphs -->
|
|
<xpath expr="//p[hasclass('lead')]" position="replace" mode="inner">
|
|
Discover our unique pieces of furniture selected for you.
|
|
</xpath>
|
|
<xpath expr="//p[hasclass('lead')]" position="after">
|
|
<p><br/></p>
|
|
</xpath>
|
|
<!-- Button -->
|
|
<xpath expr="//a[hasclass('btn')]/t" position="replace" mode="inner">
|
|
Discover More
|
|
</xpath>
|
|
<xpath expr="//a[hasclass('btn')]" position="attributes">
|
|
<attribute name="class" add="btn-lg" separator=" "/>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|