forked from qt-creator/qt-creator
Move HTML out of translated strings
Change-Id: I4664427086619f33e9a882eb3f0a5f2f52e1b42a Reviewed-by: Jochen Becher <jochen_becher@gmx.de> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -401,10 +401,11 @@ void DebuggerItemConfigWidget::load(const DebuggerItem *item)
|
||||
const bool is64bit = is64BitWindowsSystem();
|
||||
const QString versionString = is64bit ? tr("64-bit version") : tr("32-bit version");
|
||||
//: Label text for path configuration. %2 is "x-bit version".
|
||||
text = tr("<html><body><p>Specify the path to the "
|
||||
"<a href=\"%1\">Windows Console Debugger executable</a>"
|
||||
" (%2) here.</p>""</body></html>").
|
||||
arg(QLatin1String(debuggingToolsWikiLinkC), versionString);
|
||||
text = "<html><body><p>"
|
||||
+ tr("Specify the path to the "
|
||||
"<a href=\"%1\">Windows Console Debugger executable</a>"
|
||||
" (%2) here.").arg(QLatin1String(debuggingToolsWikiLinkC), versionString)
|
||||
+ "</p></body></html>";
|
||||
versionCommand = QLatin1String("-version");
|
||||
} else {
|
||||
versionCommand = QLatin1String("--version");
|
||||
|
||||
Reference in New Issue
Block a user