[pbs-devel] [RFC v2 proxmox-backup 20/21] ui: drop 'permanent' in group/snapshot forget, default is to trash

Christian Ebner c.ebner at proxmox.com
Thu May 8 15:05:54 CEST 2025


Soften the message as the snapshots and groups will not be deleted
immediately anymore, but rather moved to the trash, from where they
still can be restored until the next garbage collection run.

Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
---
 www/datastore/Content.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/datastore/Content.js b/www/datastore/Content.js
index fffd8c160..a6e28a773 100644
--- a/www/datastore/Content.js
+++ b/www/datastore/Content.js
@@ -1029,9 +1029,9 @@ Ext.define('PBS.DataStoreContent', {
 			if (data.ty === 'ns') {
 			    tip = gettext("Remove namespace '{0}'");
 			} else if (data.ty === 'dir') {
-			    tip = gettext("Permanently forget snapshot '{0}'");
+			    tip = gettext("Forget snapshot '{0}'");
 			} else if (data.ty === 'group') {
-			    tip = gettext("Permanently forget group '{0}'");
+			    tip = gettext("Forget group '{0}'");
 			}
 			return Ext.String.format(tip, v);
 		    },
-- 
2.39.5





More information about the pbs-devel mailing list