mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
Added ARS currency (#5869)
* Added ARS currency * Added correct release number --------- Co-authored-by: Ras <git.boasting733@passinbox.com>
This commit is contained in:
committed by
GitHub
parent
90e848ebe8
commit
148ca92584
@@ -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')],
|
||||
|
||||
@@ -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 },
|
||||
|
||||
6
upcoming-release-notes/5869.md
Normal file
6
upcoming-release-notes/5869.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Enhancements
|
||||
authors: [ rast110e5 ]
|
||||
---
|
||||
|
||||
Added Argentinian Peso currency symbol
|
||||
Reference in New Issue
Block a user