Remove numbers from translation

This commit is contained in:
Karim 2022-09-07 15:05:09 +02:00
parent 33a19f73b6
commit b1deb48be0
2 changed files with 10 additions and 5 deletions

View File

@ -9,7 +9,7 @@
"crossPlatform": "Cross-platform",
"crossPlatformDescription": "Ryujinx is currently available for Windows 10/11 and Linux-based systems (macOS support is planned).",
"compatibility": "Compatibility",
"compatibilityDescription": "Ryujinx has been tested over 3,600 titles, approximately 2,700 of those being considered playable.",
"compatibilityDescription": "Ryujinx has been tested over {titles} titles, approximately {playable} of those being considered playable.",
"support": "Support",
"supportDescription": "Need help? Join the {0} to get support as well as converse with fellow switch emulation enthusiasts and team developers.",
"discord": "Ryujinx Discord server",

View File

@ -125,9 +125,14 @@ const DISCORD_URL = import.meta.env.VITE_DISCORD_URL;
<h4 class="text-lg font-bold mb-2">
{{ t("views.homepage.compatibility") }}
</h4>
<p class="leading-relaxed text-gray-600">
{{ t("views.homepage.compatibilityDescription") }}
</p>
<i18n-t
keypath="views.homepage.compatibilityDescription"
tag="p"
class="leading-relaxed text-gray-600"
>
<template v-slot:titles>3 600</template>
<template v-slot:playable>2 700</template>
</i18n-t>
</div>
<div
class="group bg-white p-5 transition ease-out duration-200 border-2 border-gray-200 rounded-2xl hover:border-sky-300"
@ -188,7 +193,7 @@ const DISCORD_URL = import.meta.env.VITE_DISCORD_URL;
tag="h3"
class="text-lg md:text-xl md:leading-relaxed font-medium text-gray-200 lg:w-2/3 mx-auto"
>
<span class="italic">{{t("views.homepage.spelled")}}</span>
<span class="italic">{{ t("views.homepage.spelled") }}</span>
</i18n-t>
</div>
</div>