Integrate new languages

This commit is contained in:
Cameron Gutman 2021-10-06 21:03:02 -05:00
commit 278bcec238
15 changed files with 65 additions and 5 deletions

View file

@ -203,6 +203,18 @@ QString StreamingPreferences::getSuffixFromLanguage(StreamingPreferences::Langua
return "th";
case LANG_KO:
return "ko";
case LANG_HU:
return "hu";
case LANG_NL:
return "nl";
case LANG_SV:
return "sv";
case LANG_TR:
return "tr";
case LANG_UK:
return "uk";
case LANG_ZH_HANT:
return "zh_Hant";
case LANG_AUTO:
default:
return QLocale::system().name();