Re: Problem with locale

2003-03-25 Thread Ashish Kulkarni
t; <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > <[EMAIL PROTECTED]> > Sent: Tuesday, March 25, 2003 9:01 PM > Subject: Re: Problem with locale > > > > Hi, > > try putting locale in the session of the user, > > Locale l=new Loca

Re: Problem with locale

2003-03-25 Thread Miguel Angel Medina Lopez
shish Kulkarni" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, March 25, 2003 9:01 PM Subject: Re: Problem with locale > Hi, > try putting locale in the session of the user, > Locale l=new Locale("es","ES"

Re: Problem with locale

2003-03-25 Thread Ashish Kulkarni
Hi, try putting locale in the session of the user, Locale l=new Locale("es","ES"); session.setAttribute(Globals.LOCALE_KEY , l); Ashish --- Miguel Angel Medina Lopez <[EMAIL PROTECTED]> wrote: > Hi all: > > I have a problem when I want to change the locale of > my struts application. By defauly,

Problem with locale

2003-03-25 Thread Miguel Angel Medina Lopez
Hi all: I have a problem when I want to change the locale of my struts application. By defauly, when I get the Locale, with the next code: log.debug("The locale is "+locale.toString()); the result is "The locale is en_US". Now I want to change the locale to spanish with the code: Locale l=ne