aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonkitaspect.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2024-02-26 17:13:01 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2024-02-27 16:00:48 +0000
commitfdb1fa2a3b868ced9075b6e40527364f209edbed (patch)
tree6b1e3bb6ae4e3391c050120be5daa2c8e0e94eec /src/plugins/python/pythonkitaspect.cpp
parentaf712dc0e7e74fa4542aac37844360edb8d33ee2 (diff)
Python: Fix capitalization of Python in UI text
Change-Id: I55beeb658eb583a74c4d79f3dc2f121010080101 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/python/pythonkitaspect.cpp')
-rw-r--r--src/plugins/python/pythonkitaspect.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/python/pythonkitaspect.cpp b/src/plugins/python/pythonkitaspect.cpp
index 26ad44bad48..254a720d7cc 100644
--- a/src/plugins/python/pythonkitaspect.cpp
+++ b/src/plugins/python/pythonkitaspect.cpp
@@ -117,11 +117,11 @@ public:
if (!pipIsUsable(path)) {
result << BuildSystemTask(
Task::Warning,
- Tr::tr("Python \"%1\" does not contain a usable pip. Pip is used to install "
- "python "
- "packages from the Python Package Index, like PySide and the python "
- "language server. If you want to use any of that functionality "
- "ensure pip is installed for that python.")
+ Tr::tr("Python \"%1\" does not contain a usable pip. pip is needed to install "
+ "Python "
+ "packages from the Python Package Index, like PySide and the Python "
+ "language server. To use any of that functionality "
+ "ensure that pip is installed for that Python.")
.arg(path.toUserOutput()));
}
if (!venvIsUsable(path)) {
@@ -130,7 +130,7 @@ public:
Tr::tr(
"Python \"%1\" does not contain a usable venv. venv is the recommended way "
"to isolate a development environment for a project from the globally "
- "installed python.")
+ "installed Python.")
.arg(path.toUserOutput()));
}
}