aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2024-04-15 09:37:53 +0200
committerEike Ziller <eike.ziller@qt.io>2024-04-18 06:06:45 +0000
commit7f8adab0d0bc19b8af3460b01850bde78ecdefda (patch)
tree0a48047ca2ba4c1a9792b985beac3b593bdf45fb /src/plugins/python
parent168136b9e63a301b5d8cac9818ae3f626123079a (diff)
Translations: Fix various \n, full stops, spaces
Add missing full stops, remove space at beginning and end, remove end lines at end Change-Id: I4ce28f578e13e100dcfbd8ef70630462faf407fc Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/plugins/python')
-rw-r--r--src/plugins/python/pythonproject.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp
index db0831005f1..ed81e8cc8bb 100644
--- a/src/plugins/python/pythonproject.cpp
+++ b/src/plugins/python/pythonproject.cpp
@@ -33,9 +33,8 @@ Tasks PythonProject::projectIssues(const Kit *k) const
{
if (PythonKitAspect::python(k))
return {};
- return {
- BuildSystemTask{Task::Error,
- Tr::tr("No Python interpreter set for kit \"%1\"").arg(k->displayName())}};
+ return {BuildSystemTask{
+ Task::Error, Tr::tr("No Python interpreter set for kit \"%1\".").arg(k->displayName())}};
}
PythonProjectNode::PythonProjectNode(const FilePath &path)