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