Somewhere along the way CLDR added currencyGroup and currencyDecimal symbols, which are to be used instead of the group and decimal separators when formatting currency amounts.
Right now only two locales use it.
de-AT:
"group": " ",
"currencyGroup": ".",
and fr-CH:
"decimal": ",",
"currencyDecimal": ".",
We need to add these two properties to NumberFormat, modify the scripts to parse them from CLDR, and modify the formatter to use them when needed.
Somewhere along the way CLDR added currencyGroup and currencyDecimal symbols, which are to be used instead of the group and decimal separators when formatting currency amounts.
Right now only two locales use it.
de-AT:
and fr-CH:
We need to add these two properties to NumberFormat, modify the scripts to parse them from CLDR, and modify the formatter to use them when needed.