From a51d0a14db1d3a2d2083ba0014990c239556ee31 Mon Sep 17 00:00:00 2001 From: AJ Jordan Date: Thu, 27 May 2021 00:43:18 -0400 Subject: [PATCH] Improve error message This one is more user-friendly and grammatically correct. Signed-off-by: AJ Jordan --- src/libsync/propagatedownload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/propagatedownload.cpp b/src/libsync/propagatedownload.cpp index b4c50e27a748b..c5040cb5938fe 100644 --- a/src/libsync/propagatedownload.cpp +++ b/src/libsync/propagatedownload.cpp @@ -780,7 +780,7 @@ void PropagateDownloadFile::slotGetFinished() if (_tmpFile.size() == 0 && _item->_size > 0) { FileSystem::remove(_tmpFile.fileName()); done(SyncFileItem::NormalError, - tr("The downloaded file is empty despite that the server announced it should have been %1.") + tr("The downloaded file is empty, but the server said it should have been %1.") .arg(Utility::octetsToString(_item->_size))); return; }