From b5cbef701edd068f8b0eaef3b9b6fa5a20d003f3 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Wed, 25 Mar 2026 09:36:00 +0100 Subject: [PATCH] chore: improve one translated string Close #9678 Signed-off-by: Matthieu Gallien --- src/libsync/owncloudpropagator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index 0172e73ac4132..b0a2b1a94c9d4 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -230,7 +230,7 @@ void PropagateItemJob::done(const SyncFileItem::Status statusArg, const QString || _item->_status == SyncFileItem::Conflict) { _item->_status = SyncFileItem::Restoration; } else { - _item->_errorString += tr("; Restoration Failed: %1").arg(errorString); + _item->_errorString = tr("%1. Restoration failed: %2", "%1 is the generic error string, the file restoration error (%2) will be appended here").arg(_item->_errorString, errorString); } } else { if (_item->_errorString.isEmpty()) {