Improved translated strings

Change-Id: I92e2a87d063894d4992451ee0e9fe2a99d298eb2
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Robert Loehning
2012-08-01 22:39:53 +02:00
committed by Friedemann Kleint
parent 2af6aa1575
commit ac8150624a
3 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ void AndroidRunControl::start()
SLOT(handleRemoteOutput(QByteArray)));
connect(m_runner, SIGNAL(remoteProcessFinished(QString)),
SLOT(handleRemoteProcessFinished(QString)));
appendMessage(tr("Starting remote process ..."), Utils::NormalMessageFormat);
appendMessage(tr("Starting remote process..."), Utils::NormalMessageFormat);
m_runner->start();
}

View File

@@ -113,7 +113,7 @@ void RemoteLinuxQmlProfilerRunner::getPorts()
m_port = 0;
emit stopped();
} else {
emit appendMessage(tr("Starting remote process ...\n"), Utils::NormalMessageFormat);
emit appendMessage(tr("Starting remote process...\n"), Utils::NormalMessageFormat);
QString arguments = m_arguments;
if (!arguments.isEmpty())
arguments.append(QLatin1Char(' '));

View File

@@ -100,8 +100,8 @@ void RemoteLinuxCheckForFreeDiskSpaceService::handleProcessFinished()
freeSpace *= 1024;
if (freeSpace < d->requiredSpaceInBytes) {
emit errorMessage(tr("The remote file system has only %1 bytes of free space, "
"but %2 bytes are required.").arg(freeSpace).arg(d->requiredSpaceInBytes));
emit errorMessage(tr("The remote file system has only %n bytes of free space, "
"but %1 bytes are required.", 0, freeSpace).arg(d->requiredSpaceInBytes));
stopDeployment();
return;
}