Re: Questions about i18n.

2003-08-14 Thread Adam Hardy
The standard i18n functionality is appropriate for allowing a user to see i18nized dates, page titles, labels etc etc. I'm not sure you can approach your problem that way, due to issues such as having content in a properties file. You could theoretically change from having the content in a

RE: Questions about i18n.

2003-08-14 Thread Paul McCulloch
1)I'd create seperate html fragments with the language specific text in them. I'd then use jsp:include with a runtime expression to determine the file to include (perhaps getting the file name from the properties file). 2) - the html:img tag deals with this for you: html:img pageKey=languagelogo

RE: Questions about i18n.

2003-08-14 Thread Toby Vidler
For 2) you could simply have a text string which includes the img html tag. You would then just put this in the properties file as normal and specify a seperate image for each language file. Toby. On 08/13/2003 11:58 PM Henry Voyer wrote: Hi fellow strutsers. I have 2 i18n question. 1) How