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:
Hello,
thank you. I converted the properties file with native2ascii and it works.
Vit Rozkovec 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 property file it is not possible to write "& uuml" instead of "ü",
because
the "&" will be escaped to "& amp".
Timm Helbig wrote:
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 greeklinux:
Hello,
I have problems with german umlauts in a feedback panel.
I define the error messages in a property file.
It displays as follows:
Bitte geben Sie eine gültige E-Mail ein
In my HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?xml version="1.0" encoding="UTF-8"?>
....
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
...
My editor is configured to 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?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]