layout->addWidget(_selectiveSync);
if (ConfigFile().showExperimentalOptions()) {
- _placeholderCheckBox = new QCheckBox(tr("Create placeholders instead of downloading files (experimental)"));
+ _placeholderCheckBox = new QCheckBox(tr("Use virtual files instead of downloading content immediately (experimental)"));
connect(_placeholderCheckBox, &QCheckBox::clicked, this, &FolderWizardSelectiveSync::placeholderCheckboxClicked);
layout->addWidget(_placeholderCheckBox);
}
</sizepolicy>
</property>
<property name="text">
- <string>Create placeholders instead of downloading files (experimental)</string>
+ <string>Use virtual files instead of downloading content immediately (e&xperimental)</string>
</property>
<property name="checkable">
<bool>false</bool>
auto msgBox = new QMessageBox(
QMessageBox::Warning,
tr("Enable experimental feature?"),
- tr("When the \"synchronize placeholders\" mode is enabled no files will be downloaded initially. "
- "Instead, a tiny \"%1\" file will be created for each file on the server. "
+ tr("When the \"virtual files\" mode is enabled no files will be downloaded initially. "
+ "Instead, a tiny \"%1\" file will be created for each file that exists on the server. "
"The contents can be downloaded by running these files or by using their context menu."
"\n\n"
"This is a new, experimental mode. If you decide to use it, please report any "
_csync_ctx->placeholder_suffix = _syncOptions._placeholderSuffix.toUtf8();
if (_csync_ctx->new_files_are_placeholders && _csync_ctx->placeholder_suffix.isEmpty()) {
- csyncError(tr("Using placeholder files, but placeholder suffix is not set"));
+ csyncError(tr("Using virtual files but placeholder suffix is not set"));
finalize(false);
return;
}