Re: Aw: [s2] Using UTF-8 in .properties files

2009-04-13 Thread Cristian Peraferrer
Thank you very much, I think it resolves my problem :) Cristian. On 09/04/2009, at 12:28, Paweł Wielgus wrote: Hi all, try this: http://sourceforge.net/projects/eclipse-rbe/ Best greetings, Paweł Wielgus. 2009/4/9 Cristian Peraferrer : So, is it possible to *really* develop internationalize

Re: Aw: [s2] Using UTF-8 in .properties files

2009-04-09 Thread redstun
What about this way 1. use UTF-8 properties file and directly put plain Unicode characters in it. 2. during your build, add a post build step to call native2ascii and convert all the properties files to have Unicode characters escaped. the post build step should be easy to implement with ANT/Maven

Aw: Re: Aw: [s2] Using UTF-8 in .properties files

2009-04-09 Thread kindlerm
sers Mailing List Datum: 09.04.2009 11:52 Betreff: Re: Aw: [s2] Using UTF-8 in .properties files > So, is it possible to *really* develop internationalized struts web > apps? How can I add chinese or japanese, if the way to > internationalize it isn't capable to use other enco

Re: Aw: [s2] Using UTF-8 in .properties files

2009-04-09 Thread Paweł Wielgus
Hi all, try this: http://sourceforge.net/projects/eclipse-rbe/ Best greetings, Paweł Wielgus. 2009/4/9 Cristian Peraferrer : > So, is it possible to *really* develop internationalized struts web apps? > How can I add chinese or japanese, if the way to internationalize it isn't > capable to use o

Re: Aw: [s2] Using UTF-8 in .properties files

2009-04-09 Thread Cristian Peraferrer
So, is it possible to *really* develop internationalized struts web apps? How can I add chinese or japanese, if the way to internationalize it isn't capable to use other encoding than ASCII? I can't understand that. Any idea? Thanks, Cristian. On 09/04/2009, at 11:39, kindl...@arcor.de wr

Aw: [s2] Using UTF-8 in .properties files

2009-04-09 Thread kindlerm
If you look in the Java docs, you will see this is not possible. .properties files are always ASCII. The only possibility to include non-ASCII characters is using the Unicode codes \u. I do hate this. There might be a way to extend the resource bundle framework to support files using other