If you're on Linux,
I have made a little script for conversion, which finds all .properties files in current directory and subdirectories and encode them proper way:

#!/bin/sh
for file in $(find . -name *.properties); do
   native2ascii $file $file
   echo $file
done

You can find native2ascii also for other platforms

vitek



Frank Bille wrote:
I have the same problem even though only 3 characters (Danish: æ, ø, å), but
I use http://www.resourcebundleeditor.com for eclipse, which creates
.properties files without me having to worry about non-ascii, linebreaks
etc. Nice little tool.

Frank


On Nov 27, 2007 8:52 PM, abaijal <[EMAIL PROTECTED]> wrote:

Thanks for the help.
From the example I see that I need to convert the text into Unicode
characters.


Eelco Hillenius wrote:
I am new to wicket framework and am trying to implement
internationalization
for Russian Characters.

When displaying Russian characters on screen, Wicket rendering displays
garbage values
Check out http://wicketstuff.org/wicket13/forminput/. You can select
Russian from the drop down and that looks fine to me. I think that
should work for 1.2 as well, though one of the improvements of 1.3 is
that you can use XML (UTF-8) encoded properties files (even if you're
using Java 1.4).

Eelco

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
View this message in context:
http://www.nabble.com/Issue-with-Internationalization-of-Non-ascii-characters-tf4883325.html#a13978245
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
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]

Reply via email to