docs: 新增西班牙语和日语README并优化多语言文档

新增README-ES.md(西班牙语)和README-JA.md(日语)文档,完善多语言README互链。优化各语言README徽章、技术栈、外链格式及语言切换区,提升文档一致性与可读性。
This commit is contained in:
谦君
2025-12-25 18:25:08 +08:00
parent b24a262ca7
commit 724a70bebb
72 changed files with 13300 additions and 2133 deletions

View File

@@ -7,9 +7,9 @@
<div
class="w-2 h-2 rounded-full shrink-0"
:class="{
'bg-green-500': status === RelationStatus.Friendly,
'bg-red-500': status === RelationStatus.Hostile,
'bg-gray-400': status === RelationStatus.Neutral
'bg-green-500 dark:bg-green-400': status === RelationStatus.Friendly,
'bg-red-500 dark:bg-red-400': status === RelationStatus.Hostile,
'bg-gray-400 dark:bg-gray-500': status === RelationStatus.Neutral
}"
/>
@@ -37,8 +37,8 @@
<!-- 好感度 -->
<div class="flex items-center gap-2 shrink-0">
<div class="w-16 h-1.5 bg-muted rounded-full overflow-hidden relative">
<div v-if="reputation < 0" class="h-full bg-red-500 absolute right-1/2" :style="{ width: `${Math.abs(reputation) / 2}%` }" />
<div v-if="reputation > 0" class="h-full bg-green-500 absolute left-1/2" :style="{ width: `${reputation / 2}%` }" />
<div v-if="reputation < 0" class="h-full bg-red-500 dark:bg-red-400 absolute right-1/2" :style="{ width: `${Math.abs(reputation) / 2}%` }" />
<div v-if="reputation > 0" class="h-full bg-green-500 dark:bg-green-400 absolute left-1/2" :style="{ width: `${reputation / 2}%` }" />
<div class="absolute left-1/2 top-0 bottom-0 w-px bg-border" />
</div>
<span class="text-sm font-medium w-10 text-right" :class="reputationColor">{{ reputation > 0 ? '+' : '' }}{{ reputation }}</span>
@@ -72,9 +72,9 @@
<div
class="w-2 h-2 rounded-full shrink-0"
:class="{
'bg-green-500': status === RelationStatus.Friendly,
'bg-red-500': status === RelationStatus.Hostile,
'bg-gray-400': status === RelationStatus.Neutral
'bg-green-500 dark:bg-green-400': status === RelationStatus.Friendly,
'bg-red-500 dark:bg-red-400': status === RelationStatus.Hostile,
'bg-gray-400 dark:bg-gray-500': status === RelationStatus.Neutral
}"
/>
<div class="flex-1 min-w-0 flex items-center gap-1 flex-wrap">