Skip to content

Commit b5cbef7

Browse files
committed
chore: improve one translated string
Close #9678 Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
1 parent b163e34 commit b5cbef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsync/owncloudpropagator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void PropagateItemJob::done(const SyncFileItem::Status statusArg, const QString
230230
|| _item->_status == SyncFileItem::Conflict) {
231231
_item->_status = SyncFileItem::Restoration;
232232
} else {
233-
_item->_errorString += tr("; Restoration Failed: %1").arg(errorString);
233+
_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);
234234
}
235235
} else {
236236
if (_item->_errorString.isEmpty()) {

0 commit comments

Comments
 (0)