Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
354c4d86
Commit
354c4d86
authored
Oct 28, 2010
by
Oswald Buddenhagen
Browse files
fix error message and source in the TS files
parent
49564401
Changes
5
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/translations/qtcreator_de.ts
View file @
354c4d86
...
...
@@ -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>
...
...
share/qtcreator/translations/qtcreator_fr.ts
View file @
354c4d86
...
...
@@ -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>
share/qtcreator/translations/qtcreator_ja.ts
View file @
354c4d86
...
...
@@ -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>
...
...
share/qtcreator/translations/qtcreator_ru.ts
View file @
354c4d86
...
...
@@ -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>
...
...
src/plugins/debugger/cdb/cdbengine.cpp
View file @
354c4d86
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment