Merge branch 'main' into i18n-consolidate-about-contest-features

This commit is contained in:
tequ
2026-04-22 14:04:35 +09:00
committed by GitHub
2 changed files with 21 additions and 12 deletions

View File

@@ -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>

View File

@@ -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": "すべての商標およびロゴは、各所有者の財産です。"
}
}