aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonbuildsystem.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2025-09-29 16:42:59 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2025-10-01 06:54:53 +0000
commit9bb236e410b055d868f820e98aa2dec9d69f1d92 (patch)
treef051e41068294e6ce8e26574f1f81ea08fd85c1e /src/plugins/python/pythonbuildsystem.cpp
parent836c5e1b2788862572f668ef4070d3e783d8f3f8 (diff)
Fix UI text 2
- Fix capitalization - Fix punctuation - Replaced '%1' with \"%1\" - Fixed the path to Preferences > Extensions Change-Id: Ib202c9a65b7f8c37efa365ab8901e22709ed60ba Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/python/pythonbuildsystem.cpp')
-rw-r--r--src/plugins/python/pythonbuildsystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/python/pythonbuildsystem.cpp b/src/plugins/python/pythonbuildsystem.cpp
index 11e684989b6..61f9640abf7 100644
--- a/src/plugins/python/pythonbuildsystem.cpp
+++ b/src/plugins/python/pythonbuildsystem.cpp
@@ -225,7 +225,7 @@ bool PythonBuildSystem::save()
const auto setError = [this](const QString &reason) {
m_saveError = OtherTask(
Task::DisruptingError,
- Tr::tr("Error saving python project file.").append('\n').append(reason));
+ Tr::tr("Cannot save Python project file.").append('\n').append(reason));
TaskHub::addTask(m_saveError);
};
@@ -353,7 +353,7 @@ void PythonBuildSystem::parse()
TaskHub::clearTasks(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM);
const auto addError = [](const QString &reason) {
TaskHub::addTask<BuildSystemTask>(
- Task::Warning, Tr::tr("Error reading python project.").append('\n').append(reason));
+ Task::Warning, Tr::tr("Cannot read Python project.").append('\n').append(reason));
TaskHub::requestPopup();
};