diff options
author | Kavindra Palaraja <kavindra.d+qt@gmail.com> | 2017-01-08 12:05:05 +0100 |
---|---|---|
committer | Kavindra Palaraja <kavindra.d+qt@gmail.com> | 2017-01-09 13:48:45 +0000 |
commit | ca507f2fe30f947d15747128ae4f0a75c6f322c2 (patch) | |
tree | 42da989018d7034ae499f4c76782944752e68ae4 /src/plugins/coreplugin/patchtool.cpp | |
parent | 0011d81817191c2b747fa1a8804bf21bccb83eab (diff) | |
download | qt-creator-ca507f2fe30f947d15747128ae4f0a75c6f322c2.tar.gz |
Change "Executing in" to "Running in"
While I understand that the term "execute" is techically accurate, to
execute has many meanings, not all of them are positive. Execute can
also mean to kill someone. We should try to have more geopolitically
neutral terms in an IDE like QtCreator since it is used all over the world.
Change-Id: Icd6742865afa7a4469764e38eee961d7a96c7d5f
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/patchtool.cpp')
-rw-r--r-- | src/plugins/coreplugin/patchtool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/patchtool.cpp b/src/plugins/coreplugin/patchtool.cpp index e4364a3219..10a48817de 100644 --- a/src/plugins/coreplugin/patchtool.cpp +++ b/src/plugins/coreplugin/patchtool.cpp @@ -107,7 +107,7 @@ static bool runPatchHelper(const QByteArray &input, const QString &workingDirect args << QLatin1String("-R"); if (withCrlf) args << QLatin1String("--binary"); - MessageManager::write(QApplication::translate("Core::PatchTool", "Executing in %1: %2 %3"). + MessageManager::write(QApplication::translate("Core::PatchTool", "Running in %1: %2 %3"). arg(QDir::toNativeSeparators(workingDirectory), QDir::toNativeSeparators(patch), args.join(QLatin1Char(' ')))); patchProcess.start(patch, args); |