react-native-i18n icon indicating copy to clipboard operation
react-native-i18n copied to clipboard

Position of Currency Symbol

Open stiofand opened this issue 5 years ago • 4 comments

with the following options in my typescript project:

const costCurrencyOptions = {
    unit: '€',
    delimiter: ',',
    separator: ',',
    sign_first: false
}

Regardless of the locale. I cannot get the Euro symbol to correctly be positioned at the end of rhe amount:

I18n.toCurrency(10),costCurrencyOptions)

displays: €10,00 but should display 10,00 €

stiofand avatar Mar 20 '19 11:03 stiofand

me too

tmtung144 avatar Nov 19 '19 02:11 tmtung144

I tried to use format: '%n%u' the success, I don't know sign_first what's the effect ???

tmtung144 avatar Nov 19 '19 02:11 tmtung144

same here, sign_first doesn't work

akinncar avatar Nov 02 '21 14:11 akinncar