VCS: Remove trailing dot in "running" message

The command should be copyable.

Change-Id: Id44e8af81f32de3d9899293de504070011f896c2
Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
Orgad Shaneh
2024-02-08 10:00:29 +02:00
committed by Orgad Shaneh
parent b163044648
commit 31ca46ef2f

View File

@@ -410,7 +410,7 @@ QString VcsOutputWindow::msgExecutionLogEntry(const FilePath &workingDir, const
+ ' ' + formatArguments(command.splitArguments());
if (workingDir.isEmpty())
return Tr::tr("Running: %1").arg(maskedCmdline) + '\n';
return Tr::tr("Running in \"%1\": %2.").arg(workingDir.toUserOutput(), maskedCmdline) + '\n';
return Tr::tr("Running in \"%1\": %2").arg(workingDir.toUserOutput(), maskedCmdline) + '\n';
}
void VcsOutputWindow::appendShellCommandLine(const QString &text)