forked from qt-creator/qt-creator
Translations: Fix debugger messages
Reviewed-by: hjk
This commit is contained in:
@@ -836,11 +836,11 @@ void GdbEngine::commandTimeout()
|
||||
debugMessage(_("TIMED OUT WAITING FOR GDB REPLY. COMMANDS STILL IN PROGRESS:"));
|
||||
int timeOut = m_commandTimer->interval();
|
||||
//m_commandTimer->stop();
|
||||
QString msg = tr("The gdb process has not produced any response "
|
||||
"to a command within %1 seconds. This may been it is stuck "
|
||||
const QString msg = tr("The gdb process has not responded "
|
||||
"to a command within %n seconds. This could mean it is stuck "
|
||||
"in an endless loop or taking longer than expected to perform "
|
||||
"the operation it was reqested.\nYou have a choice of waiting "
|
||||
"longer or abort debugging.").arg(timeOut);
|
||||
"the operation.\nYou can choose between waiting "
|
||||
"longer or abort debugging.", 0, timeOut);
|
||||
QMessageBox *mb = showMessageBox(QMessageBox::Critical,
|
||||
tr("Gdb not responding"), msg,
|
||||
QMessageBox::Ok | QMessageBox::Cancel);
|
||||
|
||||
Reference in New Issue
Block a user