EVALUATION
Kieran, could you please validate the currency pattern for Brazil and fix this in mantis? thx!
###@###.### 2002-09-25
Since this bug also affects i18n testing, please fix it before mantis engineering code freeze.
###@###.### 2002-11-05
###@###.### 2002-11-07
One thing I'm noticing in this bug: in the description , the expected format is "R$ #.##0,00" while ours is apparently giving "R$ #.##0,##". Changing the decimal pattern is no problem, but in our source the format seems to be "#,##0.##" i.e. as well as the '##', we seem to have ',' for the thousands separator and '.' for the deciaml one.
The strange thing is, the sample code given is printing out our unchanged one as "#.##0,##". It looks like we're getting the right thing for the separators, despite apparently having the wrong string in the code. Does this need to be changed as well, or is it a case of "if it ain't broke......."?
###@###.### 2002-11-08
******** l10n evaluation template - begin ***********
Evaluation :
Fixing the currency pattern for brazilian. Also swaping the decimal,
thousands separator to match ICU & the customer's description.
sccsdiff info (e.g. sccs diffs -r1.30 1.31 Activator_fr.java):
sccs diffs LocaleElements_pt_BR.java
------- LocaleElements_pt_BR.java -------
38c38
< "\u00A4 #,##0.##;-\u00A4 #,##0.##", // currency
pattern
---
> "\u00A4 #.##0,00;-\u00A4 #.##0,00", // currency
pattern
List file(s) to be delivered :
src/share/classes/sun/text/resources/LocaleElements_pt_BR.java
Target Build :
Mantis
Additional Info :
******** l10n evaluation template - end***********
###@###.### 2002-11-11
Looking at the rest of the currency patterns for the locale data, none of them are localized. Changing pt_BR back to the way it was.
src/share/classes/sun/text/resources:$ sccs diffs LocaleElements_pt_BR.java
------- LocaleElements_pt_BR.java -------
38c38
< "\u00A4 #.##0,00;-\u00A4 #.##0,00", // currency pattern
---
> "\u00A4 #,##0.00;-\u00A4 #,##0.00", // currency pattern
|