mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
9c23ffc98d
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#725
X-original-commit: 7cdb6d2ab7
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
Signed-off-by: Romain Derie (rde) <rde@odoo.com>
53 lines
2.2 KiB
XML
53 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_three_columns" inherit_id="website.s_three_columns">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="o_cc3 pt0 pb72" remove="o_cc2 pt32 pb32" separator=" "/>
|
|
</xpath>
|
|
<!-- Column #1 -->
|
|
<xpath expr="//h3" position="before">
|
|
<span class="text-600 fw-bold">$295,000</span>
|
|
</xpath>
|
|
<xpath expr="//h3" position="replace" mode="inner">
|
|
House On The Hill
|
|
</xpath>
|
|
<xpath expr="//p[hasclass('card-text')]" position="replace" mode="inner">
|
|
Waste no time in viewing this truly stunning property. The property's surroundings really set it apart, offering idyllic sea views overlooking a park.
|
|
</xpath>
|
|
<xpath expr="//p[hasclass('card-text')]" position="after" >
|
|
<a href="#" class="btn btn-primary mb-0">View details</a>
|
|
</xpath>
|
|
|
|
<!-- Column 2 -->
|
|
<xpath expr="(//h3)[2]" position="before">
|
|
<span class="text-600 fw-bold">$1,295,000,000</span>
|
|
</xpath>
|
|
<xpath expr="(//h3)[2]" position="replace" mode="inner">
|
|
Moutain View
|
|
</xpath>
|
|
<xpath expr="(//p[hasclass('card-text')])[2]" position="replace" mode="inner">
|
|
The house is surrounded by garden terraces that create unique spaces and an intimate ambience. With no overlooking neighbours, the garden offers real privacy.
|
|
</xpath>
|
|
<xpath expr="(//p[hasclass('card-text')])[2]" position="after" >
|
|
<a href="#" class="btn btn-primary mb-0">View details</a>
|
|
</xpath>
|
|
|
|
<!-- Column 3 -->
|
|
<xpath expr="(//h3)[3]" position="before">
|
|
<span class="text-600 fw-bold">$455,000</span>
|
|
</xpath>
|
|
<xpath expr="(//h3)[3]" position="replace" mode="inner">
|
|
Paradise Residence
|
|
</xpath>
|
|
<xpath expr="(//p[hasclass('card-text')])[3]" position="replace" mode="inner">
|
|
Elegant, modern sophisticated architecture with an impressive in large scale home designed with the finest imported finishes. Marble and wood floors...
|
|
</xpath>
|
|
<xpath expr="(//p[hasclass('card-text')])[3]" position="after" >
|
|
<a href="#" class="btn btn-primary mb-0">View details</a>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|