Remove numbers from translation
This commit is contained in:
parent
33a19f73b6
commit
b1deb48be0
2 changed files with 10 additions and 5 deletions
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue