Fix some tr()-messages in the Debugger plugin.

Change-Id: Ie3145e90066432074fc44c77eeee027f57edfcf4
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Friedemann Kleint
2013-10-08 17:45:40 +02:00
committed by hjk
parent f48d945bd4
commit da63065337

View File

@@ -447,8 +447,9 @@ void DebuggerItemManager::autoDetectDebuggers()
DebuggerItem item;
item.setCommand(command);
item.reinitializeFromFile();
//: %1: Debugger engine type (GDB, LLDB, CDB...), %2: Path
item.setDisplayName(tr("System %1 at %2")
.arg(item.engineTypeName()).arg(fi.absoluteFilePath()));
.arg(item.engineTypeName()).arg(QDir::toNativeSeparators(fi.absoluteFilePath())));
item.setAutoDetected(true);
doAddDebugger(item);
}
@@ -1030,7 +1031,7 @@ DebuggerItemConfigWidget::DebuggerItemConfigWidget()
// formLayout->addRow(new QLabel(tr("Type:")), m_engineTypeComboBox);
formLayout->addRow(m_cdbLabel);
formLayout->addRow(new QLabel(tr("Path:")), m_binaryChooser);
formLayout->addRow(new QLabel(tr("Abis:")), m_abis);
formLayout->addRow(new QLabel(tr("ABIs:")), m_abis);
connectDirty();
}