diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index 3dfa74c5b9c13d3fe753f39b3320acea1ff2ca6d..a119db3da9a4616c88616de118f9202c159f8e23 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -19347,8 +19347,9 @@ Server: %2.</translation> <translation></translation> </message> <message> - <source>The CDB debug engine does not support the '%1</source> - <translation></translation> + <source>The CDB debug engine does not support the %1 toolchain.</source> + <extracomment>%1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context)</extracomment> + <translation>Der CDB-Debugger unterstützt die Toolchain '%1' nicht.</translation> </message> </context> <context> diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index 3d1ae5d6801681270acce0c4aa4e9f290da9b68a..b0f5888ee1f8999e93febe2c36caf42035250e8d 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -26700,8 +26700,9 @@ La liste du serveur était %2.</translation> <translation>Point d'observation : %1</translation> </message> <message> - <source>The CDB debug engine does not support the '%1</source> - <translation>Le moteur de débogage CDB ne supporte pas le '%1'</translation> + <source>The CDB debug engine does not support the %1 toolchain.</source> + <extracomment>%1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context)</extracomment> + <translation type="unfinished">Le moteur de débogage CDB ne supporte pas le '%1'</translation> </message> </context> <context> diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts index 61a7f76303f4ef11eb00b6268e17c13560991580..96741629a06aaf30bd0378bdacb3267a51bd6c1d 100644 --- a/share/qtcreator/translations/qtcreator_ja.ts +++ b/share/qtcreator/translations/qtcreator_ja.ts @@ -22593,8 +22593,9 @@ Server list was %2.</source> <translation>監視ãƒã‚¤ãƒ³ãƒˆ: %1</translation> </message> <message> - <source>The CDB debug engine does not support the '%1</source> - <translation>CDB デãƒãƒƒã‚° エンジン㯠'%1' をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“</translation> + <source>The CDB debug engine does not support the %1 toolchain.</source> + <extracomment>%1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context)</extracomment> + <translation type="unfinished">CDB デãƒãƒƒã‚° エンジン㯠'%1' をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“</translation> </message> </context> <context> diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts index a5e385a00b20f1e0ba8613add19e41784e0ebd89..3387c1fda689c57aff40790369f4abe935da5135 100644 --- a/share/qtcreator/translations/qtcreator_ru.ts +++ b/share/qtcreator/translations/qtcreator_ru.ts @@ -4222,8 +4222,9 @@ Qt Creator не может подключитьÑÑ Ðº нему.</translation> <translation>Точка наблюдениÑ: %1</translation> </message> <message> - <source>The CDB debug engine does not support the '%1</source> - <translation>Движок отладчика CDB не поддерживает "%1"</translation> + <source>The CDB debug engine does not support the %1 toolchain.</source> + <extracomment>%1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context)</extracomment> + <translation type="unfinished">Движок отладчика CDB не поддерживает "%1"</translation> </message> </context> <context> diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 1f18fe79a5b7ad1ce1fc633ee8c5ea503b3bd62e..5aa2146bdd286050133f42c4a383f8abd22674b3 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -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;