1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 03:37:47 +00:00

Improve free space string again

This commit is contained in:
Joshua Goins 2025-02-28 16:03:37 -05:00
parent bfc95ecf37
commit 69051696e1

View file

@ -61,7 +61,7 @@ QCoro::Task<bool> 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<bool> 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;
}