Merge remote-tracking branch 'origin/13.0'

Conflicts:
	src/plugins/android/androidsettingswidget.cpp

Change-Id: Ifcb16aa16c7bc2792de25d0ee7a22cf0e39a05f8
This commit is contained in:
Eike Ziller
2024-02-29 12:44:58 +01:00
104 changed files with 2545 additions and 1567 deletions

View File

@@ -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()));
}
}