Smartclient i18n language

Hi,

Is it possible with smart client to enforce the i18n lauguage and country locale in the (windows) shortcut ?
Java webstart parameter -J-Duser.language=en does not work.
If not : Is there another way to overrule the OS system language and formatting settings ?

Regards,

Hi,

maybe something like this will work

if(someUser){
  i18n.setLocale("nl", "NL");
} else {
  i18n.setLocale("en", "EN");
}

Regards,

Thanks Peter,

I know that i18n.setLocale() does that job, I was looking for a java webstart or jvm parameter that does the same (job).

Regards,