Selective sync: rename the button 'choose what to sync'

This commit is contained in:
Olivier Goffart 2014-08-27 17:31:57 +02:00
parent 7950b49cb1
commit 928652e4cf
3 changed files with 4 additions and 2 deletions

View File

@ -73,7 +73,7 @@
<item>
<widget class="QPushButton" name="_buttonSelectiveSync">
<property name="text">
<string>Selective Sync...</string>
<string>Choose What to Sync</string>
</property>
</widget>
</item>

View File

@ -430,7 +430,7 @@ FolderWizardSelectiveSync::FolderWizardSelectiveSync()
{
QVBoxLayout *layout = new QVBoxLayout(this);
_treeView = new SelectiveSyncTreeView(this);
layout->addWidget(new QLabel(tr("Selective Sync: You can optionally deselect subfolders you do not wish to synchronize.")));
layout->addWidget(new QLabel(tr("Choose What to Sync: You can optionally deselect subfolders you do not wish to synchronize.")));
layout->addWidget(_treeView);
}

View File

@ -26,6 +26,7 @@
#include <QDebug>
#include <QSettings>
#include <QScopedValueRollback>
#include <QLabel>
namespace Mirall {
@ -253,6 +254,7 @@ SelectiveSyncDialog::SelectiveSyncDialog(Folder* folder, QWidget* parent, Qt::Wi
{
QVBoxLayout *layout = new QVBoxLayout(this);
_treeView = new SelectiveSyncTreeView(parent);
layout->addWidget(new QLabel(tr("Only checked folders will sync to this computer")));
layout->addWidget(_treeView);
QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal);
QPushButton *button;