mirror of
https://github.com/Xahau/xahau-web.git
synced 2026-06-08 03:06:45 +00:00
Merge branch 'main' into i18n-consolidate-about-contest-features
This commit is contained in:
@@ -62,15 +62,15 @@ const sections = ecosystemData.sections.map((section) =>
|
||||
<!-- ══ PAGE HEADER ══════════════════════════════════════════════════════ -->
|
||||
<header class="xe-head">
|
||||
<div class="xe-head-title">
|
||||
<h2>Ecosystem</h2>
|
||||
<h2>{ecosystemData.title[locale]}</h2>
|
||||
<p class="xe-sub">
|
||||
{sections.map(s => s.label.en).join(', ')}
|
||||
built on or around Xahau
|
||||
{sections.map(s => s.label[locale]).join(', ')}
|
||||
{ecosystemData.buildonxahau[locale]}
|
||||
</p>
|
||||
</div>
|
||||
<div class="xe-chips">
|
||||
{sections.map(s => (
|
||||
<span class="xe-chip">{s.items.length} {s.label.en}</span>
|
||||
<span class="xe-chip">{s.items.length} {s.label[locale]}</span>
|
||||
))}
|
||||
</div>
|
||||
</header>
|
||||
@@ -157,13 +157,7 @@ const sections = ecosystemData.sections.map((section) =>
|
||||
)
|
||||
})}
|
||||
|
||||
<p class="xe-tm">
|
||||
{locale === 'es'
|
||||
? 'Todas las marcas y logotipos son propiedad de sus respectivos dueños.'
|
||||
: locale === 'ja'
|
||||
? 'すべての商標およびロゴは、各所有者の財産です。'
|
||||
: 'All trademarks and logos are the property of their respective owners.'}
|
||||
</p>
|
||||
<p class="xe-tm">{ecosystemData.trademark[locale]}</p>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
|
||||
@@ -1,4 +1,14 @@
|
||||
{
|
||||
"title": {
|
||||
"en": "Ecosystem",
|
||||
"es": "Ecosistema",
|
||||
"ja": "エコシステム"
|
||||
},
|
||||
"buildonxahau": {
|
||||
"en": "built on or around Xahau",
|
||||
"es": "creados en Xahau o en torno a ella",
|
||||
"ja": "がXahauを利用して構築しています"
|
||||
},
|
||||
"sections": [
|
||||
{
|
||||
"id": "enterprise",
|
||||
@@ -290,5 +300,10 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
"trademark": {
|
||||
"en": "All trademarks and logos are the property of their respective owners.",
|
||||
"es": "Todas las marcas y logotipos son propiedad de sus respectivos dueños.",
|
||||
"ja": "すべての商標およびロゴは、各所有者の財産です。"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user