Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-08-11 14:27:49 +0300
committerHannah von Reth <vonreth@kde.org>2021-08-12 16:16:04 +0300
commitb09d1364cca93ed9520eb6eb682a16b24441535d (patch)
tree3df82e8d49ee021ec7f1199807701ca543b74d32 /src/gui/folderstatusmodel.cpp
parent6ac3d2ed356e67140e4c61547e07aad8bdde28e3 (diff)
Folder delegate: Don't display `Synchronizing with`
We are a sync client mentioning that we sync is pointless. Also remove `Synchronizing VirtualFiles` with placeholders we still display a banner. On Windows VirtualFiles are the standard. Fixes: #8871
Diffstat (limited to 'src/gui/folderstatusmodel.cpp')
-rw-r--r--src/gui/folderstatusmodel.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gui/folderstatusmodel.cpp b/src/gui/folderstatusmodel.cpp
index 5768b2abc..8f4449bcf 100644
--- a/src/gui/folderstatusmodel.cpp
+++ b/src/gui/folderstatusmodel.cpp
@@ -256,11 +256,7 @@ QVariant FolderStatusModel::data(const QModelIndex &index, int role) const
case FolderStatusDelegate::SyncProgressOverallString:
return progress._overallSyncString;
case FolderStatusDelegate::FolderSyncText:
- if (f->virtualFilesEnabled()) {
- return tr("Synchronizing VirtualFiles with local folder");
- } else {
- return tr("Synchronizing with local folder");
- }
+ return tr("Local folder: %1").arg(f->shortGuiLocalPath());
}
return QVariant();
}