Changing DF language

Hi!
I’ve got a problem with changing the language of DF with e.g
Locale.setDefault(Locale.US);
This code works fine before instantiate any DF objects, but I have to change the language at runtime.
So I’ve tried to change the language and then new instantiate CControl and all associated dockables, but the language is still the same.

Are there any other objects of DF I have to re-instantiate?

Greez Chris

Unfortunatelly Common loads the bundles one time and then they remain in a cache. I’ll write a small patch, that should not take too long.

New version is up, click. You’ll need to call…
DockUI.getDefaultDockUI.setLocale( ... )
… as well to clean the cache of DF. And you’ll need to create a new CControl in order to apply the settings.

Hey Beni!

Thanks a lot, it works perfect! I really appreciate your help.

greez Chris