Hello,
In this post http://www.msfn.org/board/55-bugs-t84270.h...964#entry570964
Dynaletic writes for version 5.5 :
QUOTE
It isn't a real bug, but I think it wasn't there in WPI 5.4. If you choose another language than english (or autoselect) and open the optionstab, everything is displayed in the right language. If you now directly open the config screen, everything is english. If you close the optionsscreen before opening config screen, the config screen is displayed in the right language.
and also the tooltips are in english when Options Wizard is open.
In Version 6.4, the same behavior also appears. I think it's a side effect : optionswizard.js use the global variable "Language" defined in globals.js
CODE
function OptionsDefaults()
{
position="optionswizard.js";
whatfunc="OptionsDefaults()";
//
// System predefined options
//
// Interface tab
Language='zz';
{
position="optionswizard.js";
whatfunc="OptionsDefaults()";
//
// System predefined options
//
// Interface tab
Language='zz';
May be wpi.hta don't find lang_zz when it's display Optiions Wizard layer and fall on lang_en ?
With Language as local variable in function OptionsDefault() everything is Ok.
CODE
//
// System predefined options
//
// Interface tab
var Language='zz';
// System predefined options
//
// Interface tab
var Language='zz';
Regards