From f085a0ef25ed00b925ccdc34926ff285e1a98850 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 2 Feb 2026 16:39:25 +0500 Subject: [PATCH] fix: use translated "Aborted" Signed-off-by: Octol1ttle --- launcher/tasks/Task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/tasks/Task.cpp b/launcher/tasks/Task.cpp index b01b2491c..a54b4e7c2 100644 --- a/launcher/tasks/Task.cpp +++ b/launcher/tasks/Task.cpp @@ -131,7 +131,7 @@ void Task::emitAborted() return; } m_state = State::AbortedByUser; - m_failReason = "Aborted."; + m_failReason = tr("Aborted"); if (m_show_debug) qCDebug(taskLogC) << "Task" << describe() << "aborted."; emit aborted();