Removed blank before colon
authorrakekniven <mark.ziegler@rakekniven.de>
Fri, 22 Jan 2021 20:26:56 +0000 (21:26 +0100)
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>
Mon, 25 Jan 2021 08:08:13 +0000 (08:08 +0000)
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
src/libsync/syncengine.cpp

index f0c9d627eb871bd1ab9e3ff706f78d68035680ce..9893058b7db5af546f5bdbb58bccec6233fc94dd 100644 (file)
@@ -349,7 +349,7 @@ void OCC::SyncEngine::slotItemDiscovered(const OCC::SyncFileItemPtr &item)
                 const auto result = _syncOptions._vfs->convertToPlaceholder(filePath, *item);
                 if (!result) {
                     item->_instruction = CSYNC_INSTRUCTION_ERROR;
-                    item->_errorString = tr("Could not update file : %1").arg(result.error());
+                    item->_errorString = tr("Could not update file: %1").arg(result.error());
                     return;
                 }
             }