fix: sort languages by their name instead of key
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
60b38de69f
commit
b187231b0e
@ -398,7 +398,7 @@ void TranslationsModel::reloadLocalFiles()
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return a.key < b.key;
|
||||
return a.languageName().toLower() < b.languageName().toLower();
|
||||
});
|
||||
endInsertRows();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user