diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 984531ed116..4878ef6e7e6 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -1290,8 +1290,8 @@ void GdbEngine::handleStop1(const GdbMi &data)
"signal from the Operating System.
"
"
Signal name : | %1 |
"
"Signal meaning : | %2 |
")
- .arg(name.isEmpty() ? tr(" ") : _(name))
- .arg(meaning.isEmpty() ? tr(" ") : _(meaning));
+ .arg(name.isEmpty() ? tr(" ", "name") : _(name))
+ .arg(meaning.isEmpty() ? tr(" ", "meaning") : _(meaning));
showMessageBox(QMessageBox::Information,
tr("Signal received"), msg);
}
@@ -2292,7 +2292,7 @@ void GdbEngine::handleModulesList(const GdbResponse &response)
module.symbolsRead = (item.findChild("state").data() == "Y");
module.startAddress = _(item.findChild("loaded_addr").data());
//: End address of loaded module
- module.endAddress = tr("");
+ module.endAddress = tr("", "address");
modules.append(module);
}
}