From 97560509eaa372814670433dcd9e771613d2beb4 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Thu, 9 Oct 2014 14:36:26 +0200 Subject: [PATCH] Selective sync: change the text of the label. Selective sync is a black list. Unchecked folder are blacklisted Partially checked folders are not in the blacklist and the files there are sync'ed --- src/mirall/selectivesyncdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/selectivesyncdialog.cpp b/src/mirall/selectivesyncdialog.cpp index 1edacb4016..9e519518c6 100644 --- a/src/mirall/selectivesyncdialog.cpp +++ b/src/mirall/selectivesyncdialog.cpp @@ -262,7 +262,7 @@ void SelectiveSyncDialog::init(Account *account) { QVBoxLayout *layout = new QVBoxLayout(this); _treeView = new SelectiveSyncTreeView(account, this); - layout->addWidget(new QLabel(tr("Only checked folders will sync to this computer"))); + layout->addWidget(new QLabel(tr("Unchecked folders will not be sync to this computer"))); layout->addWidget(_treeView); QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal); QPushButton *button;