mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
9 lines
344 B
JavaScript
9 lines
344 B
JavaScript
const getLocales = () => [
|
|
// you can choose / add the locales you want
|
|
{ countryCode: 'US', languageTag: 'en-US', languageCode: 'en', isRTL: false },
|
|
{ countryCode: 'FR', languageTag: 'fr-FR', languageCode: 'fr', isRTL: false },
|
|
];
|
|
const getCurrencies = () => ['USD', 'EUR']; // can be empty array
|
|
|
|
export { getLocales, getCurrencies };
|