ValueFormats: Add support for Turkish Lira (₺) (#70662)

chore(valueFormats): Turkish Lira (₺) Support add #70660
This commit is contained in:
Ercan 2023-06-27 13:43:36 +03:00 committed by GitHub
parent 135ef088ed
commit 526160b769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 0 deletions

View File

@ -440,6 +440,10 @@
{ {
"text": "Vietnamese Dong (VND)", "text": "Vietnamese Dong (VND)",
"value": "currencyVND" "value": "currencyVND"
},
{
"text": "Turkish Lira (₺)",
"value": "currencyTRY"
} }
], ],
"text": "currency" "text": "currency"

View File

@ -440,6 +440,10 @@
{ {
"text": "Vietnamese Dong (VND)", "text": "Vietnamese Dong (VND)",
"value": "currencyVND" "value": "currencyVND"
},
{
"text": "Turkish Lira (₺)",
"value": "currencyTRY"
} }
], ],
"text": "currency" "text": "currency"

View File

@ -138,6 +138,7 @@ export const getCategories = (): ValueFormatCategory[] => [
{ name: 'Indonesian Rupiah (Rp)', id: 'currencyIDR', fn: currency('Rp') }, { name: 'Indonesian Rupiah (Rp)', id: 'currencyIDR', fn: currency('Rp') },
{ name: 'Philippine Peso (PHP)', id: 'currencyPHP', fn: currency('PHP') }, { name: 'Philippine Peso (PHP)', id: 'currencyPHP', fn: currency('PHP') },
{ name: 'Vietnamese Dong (VND)', id: 'currencyVND', fn: currency('đ', true) }, { name: 'Vietnamese Dong (VND)', id: 'currencyVND', fn: currency('đ', true) },
{ name: 'Turkish Lira (₺)', id: 'currencyTRY', fn: currency('₺', true) },
], ],
}, },
{ {