Have you encoded you file into utf8?
Java properties files must never be encoded using UTF-8. The encoding for Java properties files is always the same: ISO-8859-1 with Unicode escapes. Your editor must convert any characters not in ISO-8859-1 to Unicode escapes.
See the Javadoc of "Properties": <http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html>.
For Eclipse I recommend the following plug-in for editing properties files: <http://propedit.sourceforge.jp/index_en.html>.
If the properties file is encoded as it should be and the characters are not displayed correctly, then some component is either:
- Not reading the properties file properly, or - Doing incorrect/too many encodings or decodings of strings. -- Regards, Johan --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org