why can I change german-info to english ?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Christelle
Posts: 6
Joined: Tue Mar 28, 2006 10:45 am

why can I change german-info to english ?

Post by Christelle » Tue Mar 28, 2006 10:50 am

Hi,
When I do a right-ckick on my chart , I have german Informations. Why can I change to english informations (like zoom, save, print..).

Thanks

gribas
Posts: 32
Joined: Thu Jan 26, 2006 5:34 pm

Post by gribas » Thu Mar 30, 2006 9:06 pm

What's wrong with German? Anyway, when you call the JVM:

java -Duser.language=en <YourApplication>

or in your application:

Locale.setDefault(Locale.US);
Last edited by gribas on Tue Apr 04, 2006 12:18 pm, edited 1 time in total.

Christelle
Posts: 6
Joined: Tue Mar 28, 2006 10:45 am

Post by Christelle » Tue Apr 04, 2006 10:06 am

It works fine.
Cheers.

JansonChow
Posts: 1
Joined: Sun Jul 23, 2006 10:32 am

Post by JansonChow » Sun Jul 23, 2006 10:36 am

gribas wrote:What's wrong with German? Anyway, when you call the JVM:

java -Duser.language=en <YourApplication>

or in your application:

Locale.setDefault(Locale.US);
It doesn't work here.
Whatever I set the locale,it always be in English.
Why it happened?

Locked