|
One
thing I've seen in a lot of forum apps with language packs, is one separate page
that sets all the display text values. A visitor to the site would select the
language in which they wish to view the site.
For
Example:
cfg_lang_english.cfm:
<cfscript>
variables.imageroot = "images/english/";
variables.helloimage = "hello.gif";
variables.goodbyeimage =
"goodbye.gif"; variables.hello = "Hello, Sir or Madam";
variables.goodbye = "Goodbye and Have a Nice Day.";
variables.register= "Please
Register!";
..... </cfscript>
cfg_lang_slang.cfm:
<cfscript>
variables.imageroot = "images/slang/";
variables.helloimage = "hey.gif";
variables.goodbyeimage = "seeya.gif";
variables.hello = "hey dude..";
variables.goodbye = "see ya...";
variables.register= "Yo.. sign
up!!!";
.....
</cfscript>
dsp_welcome.cfm:
<img
src="javascript:void(0);">#variables.hello#
etc. etc. etc.
This
way when you need to add a language, you change one page only. The variables are
all static to the language definition page. This would require a rework of the
site into FB3 and making all the text into separate variables, but in the long
run, the site would be infinitely scalable as far as languages are
concerned.
Bob
Krieger
The
FuseBox Tutor
-----Original Message-----
From: Erik Voldengen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 7:55 PM To: [EMAIL PROTECTED] Subject: RE: Multinlingula Sites and Methodology
|
Title: Message
- Multinlingula Sites and Methodology John Jonathan Kopanas
- RE: Multinlingula Sites and Methodology Balazs Wellisch
- Re: Multinlingula Sites and Methodology John Jonathan Kopanas
- RE: Multinlingula Sites and Methodology Erik Voldengen
- Re: Multinlingula Sites and Methodo... Bob Krieger
- Re: Multinlingula Sites and Me... John Jonathan Kopanas
- RE: Multinlingula Sites an... Bob Krieger
- Re: Multinlingula Sites and Methodo... John Jonathan Kopanas
- RE: Multinlingula Sites and Me... Erik Voldengen
- RE: Multinlingula Sites and Methodology Balazs Wellisch
- RE: Multinlingula Sites and Methodo... Steve Tannock
- Re: Multinlingula Sites and Methodology Erki Esken
- Re: Multinlingula Sites and Methodology John Jonathan Kopanas
- RE: Multinlingula Sites and Methodology Balazs Wellisch
- Re: Multinlingula Sites and Methodo... John Jonathan Kopanas
