adding a default option to the auto language selection (#65)

* adding a default option to the auto language selection

iirc NightScript suggested that a while ago or maybe it was giratina62 i don't remember exactly. 
also this is deleting untranslated languages cause they are useless now that there's a default option.

* Commenting untranslated languages
This commit is contained in:
LinuxCat
2021-02-15 19:17:52 +01:00
committed by GitHub
parent fc26f885ba
commit e52bd33905
+11 -3
View File
@@ -62,13 +62,15 @@ void Config::sysLang() {
this->language("es");
break;
/*
case 6:
this->language("en"); // Simplified chinese, not translated.
this->language("sc"); //simplified chinese
break;
case 7:
this->language("en"); // Korean, not translated.
this->language("kr") //korean
break;
*/
case 8:
this->language("nl");
@@ -82,8 +84,14 @@ void Config::sysLang() {
this->language("ru");
break;
/*
case 11:
this->language("en"); // traditional chinese, not translated.
this->language("tc") //traditional chinese
break;
*/
default:
this->language("en"); //for Simplified chinese (6), korean (7) and traditional chinese (11), which are not translated. also in case something goes wrong
break;
}
}