feat(currency): Add Dominican Peso (DOP) currency (#7028)

* feat(currency): Add Dominican Peso (DOP) currency

* Add release notes
This commit is contained in:
Crhistopher Suriel
2026-02-19 10:50:14 -04:00
committed by GitHub
parent 27402ee2b3
commit ec22923f18
3 changed files with 8 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ export function CurrencySettings() {
['CRC', t('Costa Rican Colón')],
['CZK', t('Czech Koruna')],
['DKK', t('Danish Krone')],
['DOP', t('Dominican Peso')],
['EGP', t('Egyptian Pound')],
['EUR', t('Euro')],
['GBP', t('Pound Sterling')],

View File

@@ -33,6 +33,7 @@ export const currencies: Currency[] = [
{ code: 'CRC', name: 'Costa Rican Colón', symbol: '₡', decimalPlaces: 2, numberFormat: 'space-comma', symbolFirst: true },
{ code: 'CZK', name: 'Czech Koruna', symbol: 'Kč', decimalPlaces: 2, numberFormat: 'space-comma', symbolFirst: false },
{ code: 'DKK', name: 'Danish Krone', symbol: 'kr', decimalPlaces: 2, numberFormat: 'dot-comma', symbolFirst: false },
{ code: 'DOP', name: 'Dominican Peso', symbol: 'RD$', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'EGP', name: 'Egyptian Pound', symbol: 'ج.م', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: false },
{ code: 'EUR', name: 'Euro', symbol: '€', decimalPlaces: 2, numberFormat: 'dot-comma', symbolFirst: false },
{ code: 'GBP', name: 'Pound Sterling', symbol: '£', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },

View File

@@ -0,0 +1,6 @@
---
category: Features
authors: [csuriel]
---
Adds Dominican Peso (DOP) currency