feat: add locale strings

This commit is contained in:
Hachi-R
2024-11-09 13:00:22 -03:00
parent 9619578fcf
commit 518d919da5
3 changed files with 14 additions and 6 deletions

View File

@@ -170,11 +170,11 @@ export function DownloadGroup({
{game.status === "seeding" ? (
<Button onClick={() => pauseSeeding(game.id)} theme="outline">
{t("stop seeding")}
{t("stop_seeding")}
</Button>
) : (
<Button onClick={() => resumeSeeding(game.id)} theme="outline">
{t("resume seeding")}
{t("resume_seeding")}
</Button>
)}
</>