Added ARS currency (#5869)

* Added ARS currency

* Added correct release number

---------

Co-authored-by: Ras <git.boasting733@passinbox.com>
This commit is contained in:
Roque Alejandro Sosa
2025-10-07 12:28:38 -03:00
committed by GitHub
parent 90e848ebe8
commit 148ca92584
3 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
import React, { useMemo } from 'react';
import { useTranslation, Trans } from 'react-i18next';
import { Trans, useTranslation } from 'react-i18next';
import { Select } from '@actual-app/components/select';
import { Text } from '@actual-app/components/text';
@@ -22,6 +22,7 @@ export function CurrencySettings() {
new Map<string, string>([
['', t('None')],
['AUD', t('Australian Dollar')],
['ARS', t('Argentinian Peso')],
['BRL', t('Brazilian Real')],
['CAD', t('Canadian Dollar')],
['CHF', t('Swiss Franc')],

View File

@@ -13,6 +13,7 @@ export type Currency = {
export const currencies: Currency[] = [
{ code: '', name: 'None', symbol: '', decimalPlaces: 2 },
{ code: 'AUD', name: 'Australian Dollar', symbol: 'A$', decimalPlaces: 2 },
{ code: 'ARS', name: 'Argentinian Peso', symbol: 'Arg$', decimalPlaces: 2 },
{ code: 'BRL', name: 'Brazilian Real', symbol: 'R$', decimalPlaces: 2 },
{ code: 'CAD', name: 'Canadian Dollar', symbol: 'CA$', decimalPlaces: 2 },
{ code: 'CHF', name: 'Swiss Franc', symbol: 'Fr.', decimalPlaces: 2 },

View File

@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [ rast110e5 ]
---
Added Argentinian Peso currency symbol