
Signature
The comp.lang.java.gui FAQ:
ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/computer-lang/java/gui/faq
http://www.uni-giessen.de/faq/archiv/computer-lang.java.gui.faq/
>> I am building my first Gui with Swing, and in the same time I need to
>> use the i18n to make it work in Japanese and English.
>
> Do not multipost.
I do, but I post also your answer to help those who may be in the same
situation :)
For the record:
"The .properties needs to be in ASCII/Latin-1 with any non ASCII/Latin-1
char encoded with the \u notation, not in utf8
This is difficult to write by hand, so use native2ascii to convert your
text. I would recommend to add the call to native2ascii to your build
system. "
Richard Wheeldon - 14 Jun 2006 08:14 GMT
> "The .properties needs to be in ASCII/Latin-1 with any non ASCII/Latin-1
> char encoded with the \u notation, not in utf8
There's also a quick hack for utf8 support in properties files:
http://www.thoughtsabout.net/blog/archives/000044.html
Richard