Add Philippine Peso currency (#5507)

This commit is contained in:
Joel Jeremy Marquez
2025-08-06 17:39:49 -07:00
committed by GitHub
parent 63604c1161
commit 22237d11ca
3 changed files with 8 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ export function CurrencySettings() {
['GBP', t('Pound Sterling')],
['HKD', t('Hong Kong Dollar')],
// ['JPY', t('Yen')],
['PHP', t('Philippine Peso')],
['SEK', t('Swedish Krona')],
['SGD', t('Singapore Dollar')],
['TRY', t('Turkish Lira')],

View File

@@ -20,6 +20,7 @@ export const currencies: Currency[] = [
{ code: 'GBP', name: 'Pound Sterling', symbol: '£', decimalPlaces: 2 },
{ code: 'HKD', name: 'Hong Kong Dollar', symbol: 'HK$', decimalPlaces: 2 },
// { code: 'JPY', name: 'Yen', symbol: '¥', decimalPlaces: 0 },
{ code: 'PHP', name: 'Philippine Peso', symbol: '₱', decimalPlaces: 2 },
{ code: 'SEK', name: 'Swedish Krona', symbol: 'kr', decimalPlaces: 2 },
{ code: 'SGD', name: 'Singapore Dollar', symbol: 'S$', decimalPlaces: 2 },
{ code: 'TRY', name: 'Turkish Lira', symbol: '₺', decimalPlaces: 2 },

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [joel-jeremy]
---
Add Philippine Peso currency