Rename "placeholder" feature
authorChristian Kamm <mail@ckamm.de>
Wed, 16 May 2018 09:34:01 +0000 (11:34 +0200)
committerKevin Ottens <kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:57:53 +0000 (10:57 +0100)
src/gui/folderwizard.cpp
src/gui/wizard/owncloudadvancedsetuppage.ui
src/gui/wizard/owncloudwizard.cpp
src/libsync/syncengine.cpp

index 90f750d66ea94b535576b9410a9b793e3514ab64..dbbdbd06f6ab9fd2dac16527a9c8307f5efa9472 100644 (file)
@@ -495,7 +495,7 @@ FolderWizardSelectiveSync::FolderWizardSelectiveSync(const AccountPtr &account)
     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);
     }
index 303590b34b1d88c9ff4e5e2c3fb60cd5d15869a9..0f9a7bc87a29b436287bd19e11f9844fac31fe2b 100644 (file)
              </sizepolicy>
             </property>
             <property name="text">
-             <string>Create placeholders instead of downloading files (experimental)</string>
+             <string>Use virtual files instead of downloading content immediately (e&amp;xperimental)</string>
             </property>
             <property name="checkable">
              <bool>false</bool>
index d9adb828e78b21fba9d9d7487134db9202fc41f4..effc6955fd40016b9d77b4b65f110bb0c38d441b 100644 (file)
@@ -331,8 +331,8 @@ void OwncloudWizard::askExperimentalPlaceholderFeature(const std::function<void(
     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 "
index 93cab726f034d9dd11ec1207604ad0f6882da058..a6f3e9c28998cbdebd167dc5519abe8f169593fe 100644 (file)
@@ -862,7 +862,7 @@ void SyncEngine::startSync()
     _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;
     }