Hi Vinay,
I have recently been learning about the internationalization myself and so
far I have found 2 ways to change the locale:
1. Change the language setting in your browser and the struts framework
will automatically pick this up.
2. Manually set the local in the user's session once you have determined
which language they would like.
For example:
Locale locale = Locale.FRENCH;
session.setAttribute(Action.LOCALE_KEY , locale);
Then it's just a matter of:
a) including an application resources file for each locale you plan to
support.
b) registering the main resource file with the struts framework.
Regards,
Michelle
----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 26, 2001 10:07 AM
Subject: Internationalization
>
>
> I am learning the struct architecture. I want to use the
internationalization in
> my application. I have seen the example application that is currently
using the
> internationalization. I want to change the locale of the application.
Which are
> the points in the architecture I have to change to use the different
locale.
> I have tried but unable to change. I will be thanful to you if anyone
solve my
> problem.
> Vinay.
>