Valgrind: fix UI text capitalization and punctuation

Removed the asterisks from messages.

Change-Id: I1c8e95b6d6f77921f2908c4587af5ebfde5e86af
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Leena Miettinen
2013-10-09 17:25:21 +02:00
committed by hjk
parent 3bf7578beb
commit 2f7f1d904c
5 changed files with 12 additions and 12 deletions

View File

@@ -130,7 +130,7 @@ bool MemcheckRunner::start()
QVBoxLayout *layout = new QVBoxLayout;
QLabel *description = new QLabel;
description->setWordWrap(true);
description->setText(tr("More than one network interface was found on your machine. Please select which one you want to use for remote analysis."));
description->setText(tr("More than one network interface was found on your machine. Please select the one you want to use for remote analysis."));
layout->addWidget(description);
QListWidget *list = new QListWidget;
foreach (const QHostAddress &address, possibleHostAddresses)
@@ -151,7 +151,7 @@ bool MemcheckRunner::start()
dlg.setLayout(layout);
if (dlg.exec() != QDialog::Accepted) {
emit processErrorReceived(tr("No Network Interface was chosen for remote analysis"), QProcess::FailedToStart);
emit processErrorReceived(tr("No network interface was chosen for remote analysis."), QProcess::FailedToStart);
return false;
}