mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Change Windows virtual files description to tech preview
This commit is contained in:
parent
0ac8a3e6be
commit
f78c4f851b
3 changed files with 5 additions and 2 deletions
|
@ -471,7 +471,7 @@ void AccountSettings::slotCustomContextMenuRequested(const QPoint &pos)
|
|||
&& !folder->supportsVirtualFiles()
|
||||
&& bestAvailableVfsMode() != Vfs::Off
|
||||
&& !folder->isVfsOnOffSwitchPending()) {
|
||||
ac = menu->addAction(tr("Enable virtual file support (experimental)..."));
|
||||
ac = menu->addAction(tr("Enable virtual file support %1...").arg(bestAvailableVfsMode() == Vfs::WindowsCfApi ? tr("(tech preview)") : tr("(experimental)")));
|
||||
connect(ac, &QAction::triggered, this, &AccountSettings::slotEnableVfsCurrentFolder);
|
||||
}
|
||||
|
||||
|
|
|
@ -75,6 +75,9 @@ OwncloudAdvancedSetupPage::OwncloudAdvancedSetupPage()
|
|||
_ui.confSpinBox->hide();
|
||||
_ui.confTraillingSizeLabel->hide();
|
||||
}
|
||||
|
||||
_ui.rVirtualFileSync->setText(tr("Use &virtual files instead of downloading content immediately %1").arg(
|
||||
bestAvailableVfsMode() == Vfs::WindowsCfApi ? tr("(tech preview)") : tr("(experimental)")));
|
||||
}
|
||||
|
||||
void OwncloudAdvancedSetupPage::setupCustomization()
|
||||
|
|
|
@ -238,7 +238,7 @@
|
|||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use virtual files instead of downloading content immediately (e&xperimental)</string>
|
||||
<string notr="true">Use &virtual files !PLACEHOLDER!</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>false</bool>
|
||||
|
|
Loading…
Reference in a new issue