summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@theqtcompany.com>2016-05-17 09:32:19 +0300
committerKatja Marttila <katja.marttila@qt.io>2016-05-19 06:24:33 +0000
commit2cb5ecf0d7c7e652d1f085cb8807a1957a1df26c (patch)
treefc7f0fc514f5b9c5c4d7bcdb08f8b9b15024969a
parentac4784ad6fb26994ae7c6502cb4ec89ae39b9103 (diff)
add missing tr for "AlreadyRunning" messagebox
Change-Id: Icffe886597a1f18d9eaacf1e3a14f31e252919c6 Reviewed-by: Topi Reiniƶ <topi.reinio@theqtcompany.com> Reviewed-by: Iikka Eklund <iikka.eklund@theqtcompany.com>
-rw-r--r--src/sdk/installerbase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdk/installerbase.cpp b/src/sdk/installerbase.cpp
index 82a08411b..3c220cdba 100644
--- a/src/sdk/installerbase.cpp
+++ b/src/sdk/installerbase.cpp
@@ -83,8 +83,8 @@ int InstallerBase::run()
// the fact that we could not create the lock file and check the running processes.
if (runCheck.isRunning(KDRunOnceChecker::ConditionFlag::ProcessList)) {
QInstaller::MessageBoxHandler::information(0, QLatin1String("AlreadyRunning"),
- QString::fromLatin1("Waiting for %1").arg(qAppName()),
- QString::fromLatin1("Another %1 instance is already running. Wait "
+ tr("Waiting for %1").arg(qAppName()),
+ tr("Another %1 instance is already running. Wait "
"until it finishes, close it, or restart your system.").arg(qAppName()));
return EXIT_FAILURE;
}