aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/extensionmanager/extensionmanagerwidget.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2025-05-13 15:12:53 +0200
committerEike Ziller <[email protected]>2025-05-14 10:18:12 +0000
commitdca18e33f10c76f487e017c35d891f92f365b06e (patch)
tree17cf93eb565e79a3633970b34ea56179cf88d456 /src/plugins/extensionmanager/extensionmanagerwidget.cpp
parentbace3cb2473bbeb0604e4ed4925c007becce87c5 (diff)
Various UI text fixes
Fixing case, missing full stops, quotes, etc Change-Id: I0dc1064de0abe73b6a4ff95c81dcf88009057989 Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/plugins/extensionmanager/extensionmanagerwidget.cpp')
-rw-r--r--src/plugins/extensionmanager/extensionmanagerwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/extensionmanager/extensionmanagerwidget.cpp b/src/plugins/extensionmanager/extensionmanagerwidget.cpp
index f71fbcd6bb0..058e8d0bc6a 100644
--- a/src/plugins/extensionmanager/extensionmanagerwidget.cpp
+++ b/src/plugins/extensionmanager/extensionmanagerwidget.cpp
@@ -180,7 +180,7 @@ public:
QString versionStr = remoteSpec->version();
if (!isCompatible)
- versionStr += Tr::tr(" (Incompatible)");
+ versionStr += " " + Tr::tr("(Incompatible)");
else if (initialIndex == -1)
initialIndex = i;
@@ -914,7 +914,7 @@ void ExtensionManagerWidget::fetchAndInstallPlugin(const QUrl &url, bool update,
QMessageBox::warning(
ICore::dialogParent(),
Tr::tr("Download Error"),
- Tr::tr("Downloaded extension has invalid hash"));
+ Tr::tr("Downloaded extension has an invalid hash."));
return DoneResult::Error;
}