Forum Moderators: open
we are putting up translations for our site shortly.
i am wondering if there are any other options apart from mirroring the whole site in the other languages..
i had thought about includes.. but i wasnt sure if includes can be logically included..
ie if lang=fr then include fr.html etc..
i know of course this can be done with asp or some other server side scripting language, but is HTML capable of using includes with logic?
i thought not, but someone says yes..
im not convinced :)
so i thoughti would ask here.
tia
nat
We use a translation dictionary system. In our content we use a flag that the servlets identify and translate via our dictionaries. It's a nice and effective system but take a lot to develop and you need to keep your dictionary up to date.
You could ask your users what language they want and via a cookie serve up the correct include in the relevant language. You still need to create the includes in the different languages.
HTH
had thought about includes.. but i wasnt sure if includes can be logically included.If you had some sort of content management system it might be possible to do includes across domains. I'm looking to do this with some different language sites, with each language on its own local TLD.
We keep a dictionary of all our labels etc. (based on a taxonomy) and for internationalisation we get this dictionary translated.
HTH