feat(currency): Add South Korean Won (#6846)

* Add South Korean Won

* Update currencies.ts

* Add release notes
This commit is contained in:
jintakhan
2026-02-12 02:00:41 +09:00
committed by GitHub
parent 37a7d0eccd
commit 9798c26462
3 changed files with 8 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ export function CurrencySettings() {
['INR', t('Indian Rupee')],
['JMD', t('Jamaican Dollar')],
['JPY', t('Japanese Yen')],
['KRW', t('South Korean Won')],
['LKR', t('Sri Lankan Rupee')],
['MDL', t('Moldovan Leu')],
['MYR', t('Malaysian Ringgit')],

View File

@@ -43,6 +43,7 @@ export const currencies: Currency[] = [
{ code: 'INR', name: 'Indian Rupee', symbol: '₹', decimalPlaces: 2, numberFormat: 'comma-dot-in', symbolFirst: true },
{ code: 'JMD', name: 'Jamaican Dollar', symbol: 'J$', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'JPY', name: 'Japanese Yen', symbol: '¥', decimalPlaces: 0, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'KRW', name: 'South Korean Won', symbol: '₩', decimalPlaces: 0, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'LKR', name: 'Sri Lankan Rupee', symbol: 'Rs.', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'MDL', name: 'Moldovan Leu', symbol: 'L', decimalPlaces: 2, numberFormat: 'dot-comma', symbolFirst: false },
{ code: 'MYR', name: 'Malaysian Ringgit', symbol: 'RM', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [jintakhan]
---
Add South Korean Won to list of currencies