One option to consider, and there are several points which could eliminate this choice, is to just have multiple instances of each static HTML file, each one for each locale you want to support. You could either group all of your variations in a single directory, or have a "locale" directory that contains all the pages for a specific locale.
Serving of different images for each locale has to the potential to be easy, if there is a 1-1 correspondence between each image for each locale, and they each have the same "semantics". As a result, you could have all the HTML pages refer to "foo.gif", and the actual image would depend on the "locale" directory. Obviously, this strategy would require you to use the "locale" directory choice from above. Your JSP pages would have conditional links based on the user's locale, to point to each locale directory. > -----Original Message----- > From: Jana Navaneethan [mailto:[EMAIL PROTECTED]] > > Hi, > We have a multi-lingual application. We are trying to > convert our > existing application using STRUTS. We have few static HTML > pages (.html) How > to serve this pages to the User? because these are not JSP > pages and I can't > use <bean:message> and the it has lot of static content for > example privacy > policy? I tried to convert them to .jsp and convert all the > static text in > to messages. Since the file is huge Is there any other better > way of doing > this? Also We need to serve the user with different images (Language > specific) in our JSP Pages how to do that? > > Any help would be greatly appreciated! > > Thanks, > Jana. > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

