Make string translatable

Change-Id: I5a0d48e0c01fea0e3da4174083e03920a8f39479
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-12-14 09:44:03 +01:00
parent 2f1018ab24
commit e0a05d476b

View File

@@ -255,8 +255,7 @@ void TestOutputReader::processOutput()
description = tr("Qt version: %1").arg(text.toString());
break;
case QtBuild:
// FIXME due to string freeze this is not a tr()
description = QString::fromLatin1("Qt build: %1").arg(text.toString());
description = tr("Qt build: %1").arg(text.toString());
break;
case QTestVersion:
description = tr("QTest version: %1").arg(text.toString());