Maemo: Change misleading status messages.

This commit is contained in:
ck
2010-04-14 12:44:33 +02:00
parent dbcc1fed08
commit 2d7b3bf4a0

View File

@@ -262,10 +262,10 @@ void AbstractMaemoRunControl::handleRunThreadFinished()
emit addToOutputWindow(this,
tr("Remote execution canceled due to user request."));
} else if (m_sshRunner->hasError()) {
emit addToOutputWindow(this, tr("Remote process exited with error: %1")
emit addToOutputWindow(this, tr("Error running remote process: %1")
.arg(m_sshRunner->error()));
} else {
emit addToOutputWindow(this, tr("Remote process finished successfully."));
emit addToOutputWindow(this, tr("Finished running remote process."));
}
emit finished();
}