summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/VersionProxyModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/VersionProxyModel.cpp b/application/VersionProxyModel.cpp
index 298c02f0..5587136f 100644
--- a/application/VersionProxyModel.cpp
+++ b/application/VersionProxyModel.cpp
@@ -130,7 +130,7 @@ QVariant VersionProxyModel::data(const QModelIndex &index, int role) const
QString version = sourceModel()->data(parentIndex, BaseVersionList::VersionRole).toString();
if(version == m_currentVersion)
{
- return version + " " + tr("(installed)");
+ return tr("%1 (installed)").arg(version);
}
return version;
}