Remote Linux: Do not use contractions in UI text

Task-number: QTCREATORBUG-27055
Change-Id: I7fbc6374c910fa81900a10432892c10afb0ea6d4
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
Leena Miettinen
2022-02-16 18:19:42 +01:00
parent 99ceebe695
commit 0064dda2c0

View File

@@ -68,7 +68,7 @@ void RemoteLinuxCheckForFreeDiskSpaceService::deployAndFinish()
= deviceConfiguration()->mapToGlobalPath(Utils::FilePath::fromString(d->pathToCheck));
const qint64 freeSpace = path.bytesAvailable();
if (freeSpace < 0) {
emit errorMessage(tr("Can't get the info about the free disk space for \"%1\"")
emit errorMessage(tr("Cannot get info about free disk space for \"%1\"")
.arg(path.toUserOutput()));
return;
}