From 8741cfebe97e03c6f7e34c525590badade714cef Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 16 May 2016 14:46:08 +0200 Subject: [PATCH] Changed: Better syntax for profile display --- code/ryzom/tools/client/ryzom_installer/src/profilesmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.cpp b/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.cpp index bdc0fbe23..dd9c97e40 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.cpp @@ -24,7 +24,7 @@ QVariant CProfilesModel::data(const QModelIndex &index, int role) const const CProfile &profile = m_profiles.at(index.row()); - return QString("%1 (#%2)").arg(profile.name).arg(profile.id); + return tr("#%1: %2").arg(profile.id).arg(profile.name); } bool CProfilesModel::removeRows(int row, int count, const QModelIndex &parent)