fix error message and source in the TS files

This commit is contained in:
Oswald Buddenhagen
2010-10-28 14:28:25 +02:00
parent 4956440109
commit 354c4d868d
5 changed files with 14 additions and 9 deletions

View File

@@ -1751,7 +1751,8 @@ bool checkCdbConfiguration(int toolChainI, QString *errorMsg, QString *settingsP
case ProjectExplorer::ToolChain::INVALID:
break;
default:
*errorMsg = CdbEngine::tr("The CDB debug engine does not support the '%1").
//: %1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context)
*errorMsg = CdbEngine::tr("The CDB debug engine does not support the %1 toolchain.").
arg(ProjectExplorer::ToolChain::toolChainName(toolChain));
*settingsPage = CdbOptionsPage::settingsId();
return false;