From 69051696e10511f5162e29ae80a9b381717d95f7 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 28 Feb 2025 16:03:37 -0500 Subject: [PATCH] Improve free space string again --- launcher/src/patcher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/patcher.cpp b/launcher/src/patcher.cpp index 30a22bb..0df129b 100644 --- a/launcher/src/patcher.cpp +++ b/launcher/src/patcher.cpp @@ -61,7 +61,7 @@ QCoro::Task Patcher::patch(const physis_PatchList &patchList) KFormat format; QString neededSpaceStr = format.formatByteSize(neededSpace); Q_EMIT m_launcher.miscError( - i18n("There isn't enough space available on disk to update the game. You need %1 more of free space to continue.", neededSpaceStr)); + i18n("There isn't enough space available on disk to update the game. You need %1 more free space to continue.", neededSpaceStr)); co_return false; } @@ -83,7 +83,7 @@ QCoro::Task Patcher::patch(const physis_PatchList &patchList) KFormat format; QString neededSpaceStr = format.formatByteSize(neededInstallSpace); Q_EMIT m_launcher.miscError( - i18n("There is not enough space available on disk to update the game. You need %1 more of free space to continue.", neededSpaceStr)); + i18n("There is not enough space available on disk to update the game. You need %1 more free space to continue.", neededSpaceStr)); co_return false; }