From 67fa840766f57e77fc5f8434effbc63150fc49c9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 27 Jun 2024 22:29:29 -0400 Subject: [PATCH] Add missing translation arg --- launcher/src/patcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/patcher.cpp b/launcher/src/patcher.cpp index 13cc447..f3fed67 100644 --- a/launcher/src/patcher.cpp +++ b/launcher/src/patcher.cpp @@ -213,7 +213,7 @@ void Patcher::processPatch(const QueuedPatch &patch) if (!res) { qFatal(ASTRA_PATCHER) << "Failed to install" << patch.path << "to" << (isBoot() ? QStringLiteral("boot") : patch.repository); - Q_EMIT m_launcher.miscError(i18n("Patch %1 failed to apply. The game is now in an invalid state and must be immediately repaired.")); + Q_EMIT m_launcher.miscError(i18n("Patch %1 failed to apply. The game is now in an invalid state and must be immediately repaired.", patch.name)); return; }