Files
design-themes/theme_bistro/views/snippets/s_features.xml
T
Romain Derie 9c23ffc98d [IMP] themes_*: rewrite some messages and fix typos
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>
2023-10-18 07:51:44 +00:00

38 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_features" inherit_id="website.s_features">
<!-- Column #01 -->
<xpath expr="//i" position="replace">
<i class="fa fa-2x fa-coffee rounded-circle bg-primary m-3"/>
</xpath>
<xpath expr="//h3" position="replace" mode="inner">
Breakfast
</xpath>
<xpath expr="//p" position="replace" mode="inner">
Help you start your morning right.<br/><small>From <b>7:30 am</b> to <b>10:30 am</b></small>
</xpath>
<!-- Column #02 -->
<xpath expr="(//i)[2]" position="replace">
<i class="fa fa-2x fa-cutlery rounded-circle bg-400 m-3"/>
</xpath>
<xpath expr="(//h3)[2]" position="replace" mode="inner">
Lunch
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Take a break from your busy schedule.<br/><small>From <b>11:30 am</b> to <b>2:30 pm</b></small>
</xpath>
<!-- Column #03 -->
<xpath expr="(//i)[3]" position="replace">
<i class="fa fa-2x fa-glass rounded-circle bg-secondary m-3"/>
</xpath>
<xpath expr="(//h3)[3]" position="replace" mode="inner">
Dinner
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Enjoy tasty food with friends.<br/><small>From <b>6:30 pm</b> to <b>10:30 pm</b></small>
</xpath>
</template>
</odoo>