Automatically convert IS language code to HE on startup (new code for Hebrew)

This commit is contained in:
Seeker4 2019-08-19 12:32:26 -07:00
parent 8c25e41d34
commit af2fc6f9c3

View File

@ -273,6 +273,8 @@ int main(int argc, char *argv[]) {
}
QString lastlanguage = settings.value(LangSetting, "").toString();
if (lastlanguage.compare("is", Qt::CaseInsensitive)) // Convert code for Hebrew from 'is' to 'he'
lastlanguage = "he";
bool dont_load_profile = false;
bool force_data_dir = false;