[Pkg-owncloud-commits] [owncloud-client] 06/69: Selective Sync: change the label text

Sandro Knauß hefee-guest at moszumanska.debian.org
Fri Nov 7 19:41:05 UTC 2014


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit cddad94e45d1a20e408cc8247286f1380571cf50
Author: Olivier Goffart <ogoffart at woboq.com>
Date:   Mon Oct 27 11:30:42 2014 +0100

    Selective Sync:  change the label text
    
    to specify that the files will be removed from the local folder
    
    Task #2404
---
 src/mirall/selectivesyncdialog.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/mirall/selectivesyncdialog.cpp b/src/mirall/selectivesyncdialog.cpp
index ffe7043..fb5357a 100644
--- a/src/mirall/selectivesyncdialog.cpp
+++ b/src/mirall/selectivesyncdialog.cpp
@@ -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;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list