Selective Sync: change the label text

to specify that the files will be removed from the local folder

Task #2404
This commit is contained in:
Olivier Goffart 2014-10-27 11:30:42 +01:00
parent 2f0a40c1c8
commit cddad94e45

View file

@ -271,7 +271,9 @@ void SelectiveSyncDialog::init(Account *account)
setWindowTitle(tr("Choose What to Sync"));
QVBoxLayout *layout = new QVBoxLayout(this);
_treeView = new SelectiveSyncTreeView(account, this);
layout->addWidget(new QLabel(tr("Unchecked folders will not be sync to this computer")));
QLabel *label = new QLabel(tr("Unchecked folders will be <b>removed</b> from your local file system and will not be synchronized to this computer anymore"));
label->setWordWrap(true);
layout->addWidget(label);
layout->addWidget(_treeView);
QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal);
QPushButton *button;