Hi,
Would be nice to have the ISO language of the language/area as a global tag. Currently it is only a master template tag (< !--@Lang-- >).
With it we could make multilanguage template with javascript, for example:
< script type="text/javascript">
var lang = "< !--Global:Lang-- >";
if (lang == "pt") {
document.write("portuguese");
else
document.write("other language");
}
< /script>