summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-04-08 14:57:13 +0200
committerGitHub <noreply@github.com>2022-04-08 14:57:13 +0200
commitd752dca6c555de61d29b78acd47162b4c2e36ba9 (patch)
tree40eec715b2a976c5ee3b20bfc99f1f3ed13733bb /apps
parent69378e15347630cdf4c3c7465a951857926e52ec (diff)
parentdcbcb266ccb3fa4becfbe327056cf0b581866036 (diff)
downloadnextcloud-server-d752dca6c555de61d29b78acd47162b4c2e36ba9.tar.gz
nextcloud-server-d752dca6c555de61d29b78acd47162b4c2e36ba9.zip
Merge pull request #31879 from nextcloud/enh/noid/update-external-storage-wording
update the wording of external storage deletion
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/js/settings.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index 46092d57e67..9bf7339a3bb 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -479,7 +479,7 @@ MountOptionsDropdown.prototype = {
mountOptionsFilesystemCheckOnce: t('files_external', 'Never'),
mountOptionsFilesystemCheckDA: t('files_external', 'Once every direct access'),
mountOptionsReadOnlyLabel: t('files_external', 'Read only'),
- deleteLabel: t('files_external', 'Delete')
+ deleteLabel: t('files_external', 'Disconnect')
}));
this.$el = $el;
@@ -1163,7 +1163,7 @@ MountConfigListView.prototype = _.extend({
}
var storage = new this._storageConfigClass(configId);
- OC.dialogs.confirm(t('files_external', 'Are you sure you want to delete this external storage?', {
+ OC.dialogs.confirm(t('files_external', 'Are you sure you want to disconnect this external storage? It will make the storage unavailable in Nextcloud and will lead to a deletion of these files and folders on any sync client that is currently connected but will not delete any files and folders on the external storage itself.', {
storage: this.mountPoint
}), t('files_external', 'Delete storage?'), function(confirm) {
if (confirm) {