UI text: fix debugger related strings

Fix capitalization and punctuation. Make some strings shorter.

Change-Id: Ic018d9905d855c6694d3d63e703e772d63d75c71
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Leena Miettinen
2013-05-14 17:36:28 +02:00
committed by hjk
parent bbee7310c1
commit 9c23900f55
4 changed files with 12 additions and 13 deletions

View File

@@ -1867,7 +1867,7 @@ void DebuggerEngine::checkForReleaseBuild(const DebuggerStartParameters &sp)
return;
foreach (const QByteArray &name, interesting) {
const QString found = seen.contains(name) ? tr("Found.") : tr("Not Found.");
const QString found = seen.contains(name) ? tr("Found.") : tr("Not found.");
detailedWarning.append(tr("\nSection %1: %2").arg(_(name)).arg(found));
}
break;