forked from qt-creator/qt-creator
tr()-Fixes.
Change-Id: Ie4645f3a3c82d18099dd154293d242ab07b1e5fc Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -308,7 +308,7 @@ void VariableManager::registerFileVariables(const QByteArray &prefix, const QStr
|
||||
{
|
||||
registerVariable(prefix + kFilePathPostfix, tr("%1: Full path including file name.").arg(heading));
|
||||
registerVariable(prefix + kPathPostfix, tr("%1: Full path excluding file name.").arg(heading));
|
||||
registerVariable(prefix + kFileNamePostfix, tr("%1: File name without including path.").arg(heading));
|
||||
registerVariable(prefix + kFileNamePostfix, tr("%1: File name without path.").arg(heading));
|
||||
registerVariable(prefix + kFileBaseNamePostfix, tr("%1: File base name without path and suffix.").arg(heading));
|
||||
}
|
||||
|
||||
|
||||
@@ -183,7 +183,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
|
||||
"<html><head/><body><p>GDB commands entered here will be executed after "
|
||||
"GDB has been started, but before the debugged program is started or "
|
||||
"attached, and before the debugging helpers are initialized.</p>%1"
|
||||
"<body></html>").arg(howToUsePython));
|
||||
"</body></html>").arg(howToUsePython));
|
||||
|
||||
textEditStartupCommands = new QTextEdit(groupBoxStartupCommands);
|
||||
textEditStartupCommands->setAcceptRichText(false);
|
||||
|
||||
@@ -632,7 +632,7 @@ void QmlEngine::notifyEngineRemoteServerRunning(const QByteArray &serverChannel,
|
||||
if (ok)
|
||||
startParameters().qmlServerPort = qmlPort;
|
||||
else
|
||||
qWarning() << tr("QML debugging port not set! Unable to convert %1 to unsigned int.").arg(QString::fromLatin1(serverChannel));
|
||||
qWarning() << tr("QML debugging port not set: Unable to convert %1 to unsigned int.").arg(QString::fromLatin1(serverChannel));
|
||||
|
||||
DebuggerEngine::notifyEngineRemoteServerRunning(serverChannel, pid);
|
||||
notifyEngineSetupOk();
|
||||
|
||||
Reference in New Issue
Block a user