mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-02 16:23:48 +03:00
Added pluralization
This commit is contained in:
parent
3fe77f4961
commit
b03c69b185
@ -284,7 +284,8 @@
|
||||
"quit": "Fechar"
|
||||
},
|
||||
"game_card": {
|
||||
"available": "Disponível",
|
||||
"available_one": "Disponível",
|
||||
"available_other": "Disponíveis",
|
||||
"no_downloads": "Sem downloads disponíveis"
|
||||
},
|
||||
"binary_not_found_modal": {
|
||||
|
@ -82,7 +82,7 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
||||
))}
|
||||
{remainingCount > 0 && (
|
||||
<Badge>
|
||||
+{remainingCount} {t("available")}
|
||||
+{remainingCount} {t("game_card:available", { count: remainingCount })}
|
||||
</Badge>
|
||||
)}
|
||||
</>
|
||||
|
Loading…
Reference in New Issue
Block a user