Re: Problem with german error messages in feedback panel

2008-05-05 Thread Thomas Mäder
e UTF-8 as encoding. > I tried to initialize the Wicket Application with > getRequestCycleSettings().setResponseRequestEncoding("UTF-8"); > but the error is still there. > > Has someone the same problem? > -- > View this message in context: > http://www.nabble.com

Re: Problem with german error messages in feedback panel

2008-04-29 Thread Johan Compagner
You can also use xml for your properties On 4/28/08, Vit Rozkovec <[EMAIL PROTECTED]> wrote: > Hi, > try to convert the property file with native2ascii tool. > > > greeklinux wrote: > > Hello, > > > > I am using IDEA as IDE. I configured it to use UTF-8. > > Did I forget something? > > In the prop

Re: Problem with german error messages in feedback panel

2008-04-28 Thread Vit Rozkovec
Actually if you are on linux, I made a tiny script for myself which recursively converts all .properties files in the current directory and subdirectories: #!/bin/sh for file in $(find . -name *.properties); do native2ascii $file $file echo $file done Regards Vitek greeklinux wrote:

Re: Problem with german error messages in feedback panel

2008-04-28 Thread greeklinux
;UTF-8"); >>>> but the error is still there. >>>> >>>> Has someone the same problem? >>>> >>> >>> - >>> To unsubscribe, e-mail: [EMAIL PROTE

Re: Problem with german error messages in feedback panel

2008-04-27 Thread Vit Rozkovec
Hi, try to convert the property file with native2ascii tool. greeklinux wrote: Hello, I am using IDEA as IDE. I configured it to use UTF-8. Did I forget something? In the property file it is not possible to write "& uuml" instead of "ü", because the "&" will be escaped to "& amp". Timm H

Re: Problem with german error messages in feedback panel

2008-04-27 Thread greeklinux
ttings().setResponseRequestEncoding("UTF-8"); >> but the error is still there. >> >> Has someone the same problem? > > > > ----------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For addition

Re: Problem with german error messages in feedback panel

2008-04-27 Thread Timm Helbig
Yes I had the same one. After switching my favourite IDE (Netbeans) to UTF-8 Encoding everything was fine. So, either you use Unicode Characters in your String literals, which is plain ugly, or use an editor which is capable of using UTF-8 Encodings. Am Sonntag, 27. April 2008 11:35:16 schrieb

Problem with german error messages in feedback panel

2008-04-27 Thread greeklinux
use UTF-8 as encoding. I tried to initialize the Wicket Application with getRequestCycleSettings().setResponseRequestEncoding("UTF-8"); but the error is still there. Has someone the same problem? -- View this message in context: http://www.nabble.com/Problem-with-german-error-messages