Explorar el Código

Merge pull request #2724 from nextcloud/aborted

Give the user a more descriptive error message when syncing is aborted.
Matthieu Gallien hace 4 años
padre
commit
e5b3e9ed18
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/libsync/syncengine.cpp

+ 1 - 1
src/libsync/syncengine.cpp

@@ -1033,7 +1033,7 @@ void SyncEngine::abort()
         disconnect(_discoveryPhase.data(), nullptr, this, nullptr);
         _discoveryPhase.take()->deleteLater();
 
-        Q_EMIT syncError(tr("Aborted"));
+        Q_EMIT syncError(tr("Synchronization will resume shortly."));
         finalize(false);
     }
 }