Qt 6.11 is out! See what's new in the release
blog
Get language ISO-639 from Locale::Language
-
Can I get the language code (iso-639) as a string given a
Locale::Language?Will this way always work:
QLocale::Language language = settings.getUiLanguage(); QLocale myLocale(language); QString str = myLocale.name(); str = str.mid(0,str.indexOf('_')); -
Can I get the language code (iso-639) as a string given a
Locale::Language?Will this way always work:
QLocale::Language language = settings.getUiLanguage(); QLocale myLocale(language); QString str = myLocale.name(); str = str.mid(0,str.indexOf('_'));