Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 0f0dc30

Browse files
committed
MultiMCGH-2144 Fix translatable string
1 parent 1648b34 commit 0f0dc30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: application/VersionProxyModel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ QVariant VersionProxyModel::data(const QModelIndex &index, int role) const
130130
QString version = sourceModel()->data(parentIndex, BaseVersionList::VersionRole).toString();
131131
if(version == m_currentVersion)
132132
{
133-
return version + " " + tr("(installed)");
133+
return tr("%1 (installed)").arg(version);
134134
}
135135
return version;
136136
}

0 commit comments

Comments
 (0)