forked from qt-creator/qt-creator
Fix string messages
Found during translating. Change-Id: I9626b3393d7b53300f7c806acbc5e12bc58574d2 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -973,7 +973,7 @@ void GdbServerPortsGatherer::start()
|
||||
void GdbServerPortsGatherer::handlePortListReady()
|
||||
{
|
||||
Utils::PortList portList = device()->freePorts();
|
||||
appendMessage(tr("Found %1 free ports").arg(portList.count()), NormalMessageFormat);
|
||||
appendMessage(tr("Found %n free ports.", nullptr, portList.count()), NormalMessageFormat);
|
||||
if (m_useGdbServer) {
|
||||
m_gdbServerPort = m_portsGatherer.getNextFreePort(&portList);
|
||||
if (!m_gdbServerPort.isValid()) {
|
||||
|
Reference in New Issue
Block a user