GH-2144 Fix translatable string
This commit is contained in:
parent
1648b34aed
commit
0f0dc30729
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user