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>
This commit is contained in:
Katja Marttila 2016-05-17 09:32:19 +03:00 committed by Katja Marttila
parent ac4784ad6f
commit 2cb5ecf0d7

View File

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