[Wicket-user] Hard setting of Locale

2006-04-26 Thread Rüdiger Schulz
Hello list, is it somehow possible to not only set a default Locale for an application, but sort of hard-wire one, that isn't overridden by Browser settings? I'm using an english Firefox for development, and (so far) didn't change the web page language settings. Now I'm getting the english

Re: [Wicket-user] Hard setting of Locale

2006-04-26 Thread Eelco Hillenius
Easiest thing is probably to override Session.getLocale in a custom Session implementation. super.getLocale will give you the locale that was set based on the request that created the session in case you need to take that into consideration. Eelco On 4/26/06, Rüdiger Schulz [EMAIL PROTECTED]

Re: [Wicket-user] Hard setting of Locale

2006-04-26 Thread Rüdiger Schulz
thanks, that worked great :) Always learning more of the API... -- greetings from Berlin, Rüdiger Schulz Eelco Hillenius wrote on 26.04.2006 at 14:41: Easiest thing is probably to override Session.getLocale in a custom Session implementation. super.getLocale will give you the locale that