forked from qt-creator/qt-creator
Remove most trailing newlines from translated messages.
They are a hassle for translators and reviewers alike. Change-Id: I07c1b61e8b6719e54fdc1f69cf63f573119a6776 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Robert Loehning <robert.loehning@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -117,13 +117,13 @@ void QnxDeviceTester::handleProcessFinished(int exitStatus)
|
||||
const QString command = m_commandsToTest[m_currentCommandIndex];
|
||||
if (exitStatus == QSsh::SshRemoteProcess::NormalExit) {
|
||||
if (m_processRunner->processExitCode() == 0) {
|
||||
emit progressMessage(tr("%1 found.\n").arg(command));
|
||||
emit progressMessage(tr("%1 found.").arg(command) + QLatin1Char('\n'));
|
||||
} else {
|
||||
emit errorMessage(tr("%1 not found.\n").arg(command));
|
||||
emit errorMessage(tr("%1 not found.").arg(command) + QLatin1Char('\n'));
|
||||
m_result = TestFailure;
|
||||
}
|
||||
} else {
|
||||
emit errorMessage(tr("An error occurred checking for %1.\n").arg(command));
|
||||
emit errorMessage(tr("An error occurred checking for %1.").arg(command) + QLatin1Char('\n'));
|
||||
m_result = TestFailure;
|
||||
}
|
||||
testNextCommand();
|
||||
@@ -134,7 +134,7 @@ void QnxDeviceTester::handleConnectionError()
|
||||
QTC_ASSERT(m_state == CommandsTest, return);
|
||||
|
||||
m_result = TestFailure;
|
||||
emit errorMessage(tr("SSH connection error: %1\n").arg(m_processRunner->lastConnectionErrorString()));
|
||||
emit errorMessage(tr("SSH connection error: %1").arg(m_processRunner->lastConnectionErrorString()) + QLatin1Char('\n'));
|
||||
setFinished();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user