Fix commit about Esperanto. Closes #4999 again.

This commit is contained in:
sledgehammer999 2016-03-27 21:06:28 +03:00
parent 69a7747d4b
commit fa8bae8931

View File

@ -322,7 +322,7 @@ void options_imp::initializeLanguageCombo()
QString localeStr = langFile.mid(12); // remove "qbittorrent_"
localeStr.chop(3); // Remove ".qm"
QString languageName;
if (localeStr == "eo") {
if (localeStr.startsWith("eo", Qt::CaseInsensitive)) {
// QLocale doesn't work with that locale. Esperanto isn't a "real" language.
languageName = QString::fromUtf8(C_LOCALE_ESPERANTO);
}
@ -1225,7 +1225,7 @@ QString options_imp::getLocale() const
void options_imp::setLocale(const QString &localeStr)
{
QString name;
if (localeStr == "eo") {
if (localeStr.startsWith("eo", Qt::CaseInsensitive)) {
name = "eo";
}
else {