Improved statusbar output for the debugger mode

* We now consistently avoid punctuation when possible
* Renamed usage of "Inferior" and "Program" to "Application" for
  increased readability
* Fixed inconsistent spacing in front of statusbar label

Reviewed-by:hjk
This commit is contained in:
Jens Bache-Wiig
2010-03-23 14:49:02 +01:00
parent 59af793953
commit a3b7290f37
4 changed files with 20 additions and 18 deletions

View File

@@ -76,22 +76,22 @@ QString AbstractGdbAdapter::msgGdbStopFailed(const QString &why)
QString AbstractGdbAdapter::msgInferiorStopFailed(const QString &why)
{
return tr("Inferior process could not be stopped:\n%1").arg(why);
return tr("Application process could not be stopped:\n%1").arg(why);
}
QString AbstractGdbAdapter::msgInferiorStarted()
{
return tr("Inferior started.");
return tr("Application started");
}
QString AbstractGdbAdapter::msgInferiorRunning()
{
return tr("Inferior running.");
return tr("Application running");
}
QString AbstractGdbAdapter::msgAttachedToStoppedInferior()
{
return tr("Attached to stopped inferior.");
return tr("Attached to stopped application");
}
QString AbstractGdbAdapter::msgConnectRemoteServerFailed(const QString &why)