mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 16:53:08 -07:00
Fix commit about Esperanto. Closes #4999 again.
This commit is contained in:
parent
69a7747d4b
commit
fa8bae8931
1 changed files with 2 additions and 2 deletions
|
@ -322,7 +322,7 @@ void options_imp::initializeLanguageCombo()
|
||||||
QString localeStr = langFile.mid(12); // remove "qbittorrent_"
|
QString localeStr = langFile.mid(12); // remove "qbittorrent_"
|
||||||
localeStr.chop(3); // Remove ".qm"
|
localeStr.chop(3); // Remove ".qm"
|
||||||
QString languageName;
|
QString languageName;
|
||||||
if (localeStr == "eo") {
|
if (localeStr.startsWith("eo", Qt::CaseInsensitive)) {
|
||||||
// QLocale doesn't work with that locale. Esperanto isn't a "real" language.
|
// QLocale doesn't work with that locale. Esperanto isn't a "real" language.
|
||||||
languageName = QString::fromUtf8(C_LOCALE_ESPERANTO);
|
languageName = QString::fromUtf8(C_LOCALE_ESPERANTO);
|
||||||
}
|
}
|
||||||
|
@ -1225,7 +1225,7 @@ QString options_imp::getLocale() const
|
||||||
void options_imp::setLocale(const QString &localeStr)
|
void options_imp::setLocale(const QString &localeStr)
|
||||||
{
|
{
|
||||||
QString name;
|
QString name;
|
||||||
if (localeStr == "eo") {
|
if (localeStr.startsWith("eo", Qt::CaseInsensitive)) {
|
||||||
name = "eo";
|
name = "eo";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue