Add COP (Colombian Peso) to Currencies (#6115)

* Add COP

* Create 6115.md

---------

Co-authored-by: G <g@Mac.fritz.box>
This commit is contained in:
Georg Hartmann
2025-11-13 09:27:58 -05:00
committed by GitHub
parent 774e3b7f92
commit ed77caf947
3 changed files with 8 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ export function CurrencySettings() {
['CAD', t('Canadian Dollar')],
['CHF', t('Swiss Franc')],
['CNY', t('Yuan Renminbi')],
['COP', t('Colombian Peso')],
['CRC', t('Costa Rican Colón')],
['DKK', t('Danish Krone')],
['EGP', t('Egyptian Pound')],

View File

@@ -28,6 +28,7 @@ export const currencies: Currency[] = [
{ code: 'CAD', name: 'Canadian Dollar', symbol: 'CA$', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'CHF', name: 'Swiss Franc', symbol: 'Fr.', decimalPlaces: 2, numberFormat: 'apostrophe-dot', symbolFirst: true },
{ code: 'CNY', name: 'Yuan Renminbi', symbol: '¥', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: true },
{ code: 'COP', name: 'Colombian Peso', symbol: 'Col$', decimalPlaces: 2, numberFormat: 'dot-comma', symbolFirst: true },
{ code: 'CRC', name: 'Costa Rican Colón', symbol: '₡', decimalPlaces: 2, numberFormat: 'space-comma', symbolFirst: true },
{ code: 'DKK', name: 'Danish Krone', symbol: 'kr', decimalPlaces: 2, numberFormat: 'dot-comma', symbolFirst: false },
{ code: 'EGP', name: 'Egyptian Pound', symbol: 'ج.م', decimalPlaces: 2, numberFormat: 'comma-dot', symbolFirst: false },

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [brasilikum]
---
Add COP (Colombian Peso) to Currencies