Debugger: Fix UI text to follow the guidelines

Change-Id: I7afa680c15f9dacfa8b0a17c16c442211d4fc7ce
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Leena Miettinen
2017-07-28 09:48:02 +02:00
parent 9618e6b19e
commit 6fccc45a92
3 changed files with 10 additions and 10 deletions

View File

@@ -256,8 +256,8 @@ DebuggerEngine *createEngine(DebuggerEngineType cppEngineType,
if (cppEngine) {
engine = createQmlCppEngine(cppEngine, useTerminal);
} else {
errors->append(DebuggerPlugin::tr("The slave debugging engine required for combined "
"QML/C++-Debugging could not be created: %1"));
errors->append(DebuggerPlugin::tr("The debugging engine required for combined "
"QML/C++ debugging could not be created: %1"));
}
break;
}
@@ -266,7 +266,7 @@ DebuggerEngine *createEngine(DebuggerEngineType cppEngineType,
.arg(engineTypeName(et)));
}
if (!engine)
errors->append(DebuggerPlugin::tr("Unable to create a debugger engine of the type \"%1\"").
errors->append(DebuggerPlugin::tr("Unable to create a debugging engine of the type \"%1\"").
arg(engineTypeName(et)));
return engine;
}
@@ -731,7 +731,7 @@ void GdbServerRunner::start()
setRunnable(r);
appendMessage(tr("Starting GDBserver..."), NormalMessageFormat);
appendMessage(tr("Starting gdbserver..."), NormalMessageFormat);
SimpleTargetRunner::start();
}