Re: Struts-example & i18n

2003-09-10 Thread koen boutsen
Hi This is the way I did it. I created an ActionForm with a language property. I search this langauge in my Action : language = switchLanguageForm.getLanguage(); if(language.equals("NL")) { Locale be = new Locale("nl", "BE"); setLocale(request, be); } else if (language.equals("FR"))

RE: Struts-example & i18n

2003-09-10 Thread Yoo-Jin Lee
Hi Mitesh, Are you using ? gets translated to or etc depending on the person's locale. Yoo-Jin -Original Message- From: Kapadia Mitesh-C23457 [mailto:[EMAIL PROTECTED] Sent: 09 September 2003 20:41 To: [EMAIL PROTECTED] Subject: Struts-example & i18n I can successfully run the str