forked from qt-creator/qt-creator
Remove most trailing newlines from translated messages.
They are a hassle for translators and reviewers alike. Change-Id: I07c1b61e8b6719e54fdc1f69cf63f573119a6776 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Robert Loehning <robert.loehning@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -429,9 +429,9 @@ QString VcsBaseOutputWindow::msgExecutionLogEntry(const QString &workingDir,
|
||||
const QString args = formatArguments(arguments);
|
||||
const QString nativeExecutable = QDir::toNativeSeparators(executable);
|
||||
if (workingDir.isEmpty())
|
||||
return tr("Executing: %1 %2\n").arg(nativeExecutable, args);
|
||||
return tr("Executing in %1: %2 %3\n").
|
||||
arg(QDir::toNativeSeparators(workingDir), nativeExecutable, args);
|
||||
return tr("Executing: %1 %2").arg(nativeExecutable, args) + QLatin1Char('\n');
|
||||
return tr("Executing in %1: %2 %3").
|
||||
arg(QDir::toNativeSeparators(workingDir), nativeExecutable, args) + QLatin1Char('\n');
|
||||
}
|
||||
|
||||
void VcsBaseOutputWindow::appendCommand(const QString &text)
|
||||
|
||||
Reference in New Issue
Block a user