diff --git a/config/currencies.php b/config/currencies.php index 098a880b..50925f14 100644 --- a/config/currencies.php +++ b/config/currencies.php @@ -194,5 +194,11 @@ return [ 'allows_primary' => true, 'allows_account' => true, ], + [ + 'code' => 'SGD', + 'name' => 'Singapore Dollar', + 'allows_primary' => true, + 'allows_account' => true, + ], ], ]; diff --git a/lang/es.json b/lang/es.json index 50e0f1fc..48db8fd4 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1485,6 +1485,7 @@ "Show this transfer category as money leaving available cash.": "Muestra esta categoría de transferencia como dinero que sale del saldo disponible.", "Sign up": "Crear cuenta", "Simple, transparent pricing": "Precios simples y transparentes", + "Singapore Dollar": "Dólar de Singapur", "Single-use. Works on monthly or yearly plans. Tied to your email — please keep it private.": "Un solo uso. Funciona con el plan mensual o anual. Está vinculado a tu email — guárdalo en privado.", "Skip": "Saltar", "Skip for now": "Omitir por ahora", diff --git a/lang/fr.json b/lang/fr.json index 09d55a71..5922f081 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1434,6 +1434,7 @@ "Show this transfer category as money leaving available cash.": "Affiche cette catégorie de transfert comme de l'argent sortant de votre solde disponible.", "Sign up": "Créer un compte", "Simple, transparent pricing": "Tarification simple et transparente", + "Singapore Dollar": "Dollar de Singapour", "Single-use. Works on monthly or yearly plans. Tied to your email — please keep it private.": "Usage unique. Il fonctionne avec le forfait mensuel ou annuel. Il est lié à votre e-mail : gardez-le privé.", "Skip": "Houblon", "Skip for now": "Passer pour l'instant", diff --git a/resources/js/utils/currency.ts b/resources/js/utils/currency.ts index f8798bcd..b350c264 100644 --- a/resources/js/utils/currency.ts +++ b/resources/js/utils/currency.ts @@ -28,6 +28,7 @@ export function getCurrencySymbol(currencyCode: string): string { NGN: '₦', SEK: 'kr', THB: '฿', + SGD: 'S$', }; return symbols[currencyCode] || currencyCode; }