feat: add builders club catalog ui flow

This commit is contained in:
Lorenzune
2026-04-07 14:40:51 +02:00
parent d271264b87
commit 954e477e47
26 changed files with 840 additions and 132 deletions
+3 -1
View File
@@ -42,6 +42,8 @@ export class FriendlyTime
public static getLocalization(key: string, amount: number): string
{
return LocalizeText(key, [ 'amount' ], [ amount.toString() ]);
const amountValue = amount.toString();
return LocalizeText(key, [ 'amount', 'AMOUNT' ], [ amountValue, amountValue ]);
}
}