fix: use translated "Aborted"

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-02-02 16:39:25 +05:00
parent 7bcd2dd768
commit f085a0ef25
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF

View file

@ -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();