mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Fix commit about Esperanto. Closes #4999 again.
This commit is contained in:
parent
69a7747d4b
commit
fa8bae8931
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user