Add Hindi language. (#13084)

This commit is contained in:
ycg
2022-10-19 14:32:49 +08:00
committed by GitHub
parent 8db3fc5093
commit 4e545eb4cb
9 changed files with 22 additions and 1 deletions

View File

@@ -78,6 +78,8 @@ CommonSystem::LanguageType CommonSystem::getCurrentLanguage() const {
ret = LanguageType::ROMANIAN;
} else if (0 == strcmp("bg", pLanguageName)) {
ret = LanguageType::BULGARIAN;
} else if (0 == strcmp("hi", pLanguageName)) {
ret = LanguageType::HINDI;
}
return ret;
}