And another bug appeard:
in winmain.cpp
Code: Select all
2993 virtual void update(const string& filename)
2994 {
2995 splash->setMessage(string(_("Loading: ")) + filename);
2996 }
"Loading: " is garbled again.
Code: Select all
2993 virtual void update(const string& filename)
2994 {
2995 splash->setMessage(string(_("Loading: ")) + filename);
2996 }
Sui Ota wrote:And another bug appeard:
in winmain.cpp
Code:
2993 virtual void update(const string& filename)
2994 {
2995 splash->setMessage(string(_("Loading: ")) + filename);
2996 }
"Loading: " is garbled again.
Code: Select all
splash->setMessage(string(UTF8ToCurrentCP(_("Loading: "))) + filename);