From b98893455997d58f295a51e93da658fdf5de5253 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 22 Apr 2021 13:20:43 +0200 Subject: [PATCH] ui: guest safe destroy: try to be a bit more telling in box/tooltip label Try to be more clear about what those checkboxes do, hopefully reducing potential confusion by (newer) users. Signed-off-by: Thomas Lamprecht --- www/manager6/window/SafeDestroyGuest.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/manager6/window/SafeDestroyGuest.js b/www/manager6/window/SafeDestroyGuest.js index 952dfa03..9a7a0e21 100644 --- a/www/manager6/window/SafeDestroyGuest.js +++ b/www/manager6/window/SafeDestroyGuest.js @@ -10,22 +10,22 @@ Ext.define('PVE.window.SafeDestroyGuest', { xtype: 'proxmoxcheckbox', name: 'purge', reference: 'purgeCheckbox', - boxLabel: gettext('Purge'), + boxLabel: gettext('Purge from job configurations'), checked: false, autoEl: { tag: 'div', - 'data-qtip': gettext('Remove from replication and backup jobs'), + 'data-qtip': gettext('Remove from replication, HA and backup jobs'), }, }, { xtype: 'proxmoxcheckbox', name: 'destroyUnreferenced', reference: 'destroyUnreferencedCheckbox', - boxLabel: gettext('Destroy unreferenced disks'), + boxLabel: gettext('Destroy unreferenced disks owned by guest'), checked: false, autoEl: { tag: 'div', - 'data-qtip': gettext('Scan all storages for unreferenced disks'), + 'data-qtip': gettext('Scan all enabled storages for unreferenced disks and delete them.'), }, }, ], -- 2.39.5