From 0064dda2c0800ada4eec29632080bbb96c929353 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 16 Feb 2022 18:19:42 +0100 Subject: [PATCH] Remote Linux: Do not use contractions in UI text Task-number: QTCREATORBUG-27055 Change-Id: I7fbc6374c910fa81900a10432892c10afb0ea6d4 Reviewed-by: Jarek Kobus --- .../remotelinux/remotelinuxcheckforfreediskspaceservice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp index bb2cdf86adc..bb1b67a746b 100644 --- a/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp +++ b/src/plugins/remotelinux/remotelinuxcheckforfreediskspaceservice.cpp @@ -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; }