forked from qt-creator/qt-creator
UI text: use double quotes for emphasis
Change-Id: Ia32f968bc672c587925ebc600de06b4387966aee Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -134,7 +134,7 @@ bool SshKeyExchange::sendDhInitPacket(const SshIncomingPacket &serverKexInit)
|
||||
throw SshServerException(SSH_DISCONNECT_KEY_EXCHANGE_FAILED,
|
||||
"Invalid combination of key exchange and host key algorithms.",
|
||||
QCoreApplication::translate("SshConnection",
|
||||
"No matching host key algorithm available for key exchange algorithm '%1'.")
|
||||
"No matching host key algorithm available for key exchange algorithm \"%1\".")
|
||||
.arg(QString::fromLatin1(m_kexAlgoName)));
|
||||
}
|
||||
determineHashingAlgorithm(kexInitParams, true);
|
||||
|
||||
@@ -265,7 +265,7 @@ bool ProjectIntroPage::validateProjectName(const QString &name, QString *errorMe
|
||||
}
|
||||
if (name.contains(QLatin1Char('.'))) {
|
||||
if (errorMessage)
|
||||
*errorMessage = tr("Invalid character '.'.");
|
||||
*errorMessage = tr("Invalid character \".\".");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -701,7 +701,7 @@ bool QbsBuildStepConfigWidget::validateProperties(Utils::FancyLineEdit *edit, QS
|
||||
properties.append(qMakePair(key, value));
|
||||
} else {
|
||||
if (errorMessage)
|
||||
*errorMessage = tr("No ':' found in property definition.");
|
||||
*errorMessage = tr("No \":\" found in property definition.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user