diff options
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index d14aae2dd..c83fcb903 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -1772,7 +1772,7 @@ QVariant LanguageModel::data(const QModelIndex& index, int role) const switch(role){ case Qt::DisplayRole:{ QLocale l( currentString.remove("subsurface_")); - return currentString == "English" ? currentString : l.countryToString(l.country()); + return currentString == "English" ? currentString : QString("%1 (%2)").arg(l.languageToString(l.language())).arg(l.countryToString(l.country())); }break; case Qt::UserRole:{ QString currentString = languages.at(index.row()); |