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