Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Peter
IMPORTANT? Not for me sorry! Mick Knutson wrote: I have posted this before, and I still am trying to understand the best way to approach this. I have 100% of my labels in a Resource bundle currently. But I also have larger pages of text (1-2 pages at a time), that I need to be

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Andrew Hill
What! Can you not see that the very fate of human civilisation itself depends on it? Open your eyes man! -Original Message- From: Peter [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 October 2003 16:23 To: [EMAIL PROTECTED] Subject: Re: IMPORTANT: internationalize large chunks of text/HTML

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Ted Husted
I haven't had to do this myself, but I believe that when you have entire pages that can be maintained separately, people start developing separate page trees. The idea being that you can have an Action check the locale and fork to one set of ActionForwards or another, based on the locale.

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Andrew Hill
the the appropriate root directory name is determined by the current locale. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 October 2003 17:14 To: Struts Users Mailing List Subject: Re: IMPORTANT: internationalize large chunks of text/HTML I haven't had

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Paul McCulloch
in the relvant .properties file. Paul -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 10:14 To: Struts Users Mailing List Subject: Re: IMPORTANT: internationalize large chunks of text/HTML I haven't had to do this myself, but I believe that when you have

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Mick Knutson
' [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 2:21 AM Subject: RE: IMPORTANT: internationalize large chunks of text/HTML I use a similair approach, but get fmt:message to deal with selecting the correct locale for me: bean:define id=localePage fmt:message key=some.langauage.specific.page

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Mick Knutson
: mickknutson ICQ: 316498480 ICQ URL: http://wwp.icq.com/316498480 --- - Original Message - From: Andrew Hill [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 1:26 AM Subject: RE: IMPORTANT: internationalize large chunks of text/HTML

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Paul McCulloch
: Re: IMPORTANT: internationalize large chunks of text/HTML Are you saying that the fmt will get com.baselogic.text by default, but if the Globals.LOCALE = DE, then fmt will get com.baselogic.text_de? Or am I missing where fmt gets it's locale information from? --- Thanks Mick Knutson The world

IMPORTANT: internationalize large chunks of text/HTML

2003-10-14 Thread Mick Knutson
I have posted this before, and I still am trying to understand the best way to approach this. I have 100% of my labels in a Resource bundle currently. But I also have larger pages of text (1-2 pages at a time), that I need to be internationalized just like my labels. I am wondering what the best