What about making these strings translatable?
const char* msg_langtype2langstr(int langtype){
switch(langtype){
case 0: return "English (ENG)";
case 1: return "Russian (RUS)";
case 2: return "Spanish (SPN)";
case 3: return "German (GRM)";
case 4: return "Chinese (CHN)";
case 5: return "Malasian (MAL)";
case 6: return "Indonesian (IDN)";
case 7: return "French (FRN)";
case 8: return "Brazilian Portuguese (POR)";
default: return "??";
}
}Mainly because of:461: Language is now set to %s.If you set your language to french, the text in 461 will be in french but the language name itself will be in english.I don't have time anymore for this week so if you find that this is a good thing to implement...