From fb0e18136ca6afae7141e05ea87764d0f540e4f9 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 17 May 2017 12:40:27 +0200 Subject: [PATCH] OSD: rename 'remove' to 'destroy' To have consistency with the CLI tools `pveceph destroyosd` command. This is also more clear about the resulting action, as 'Remove' could also just mean 'Remove from Config', for example. Signed-off-by: Thomas Lamprecht --- www/manager6/ceph/OSD.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/ceph/OSD.js b/www/manager6/ceph/OSD.js index 8170f17f..fbcd7d12 100644 --- a/www/manager6/ceph/OSD.js +++ b/www/manager6/ceph/OSD.js @@ -150,7 +150,7 @@ Ext.define('PVE.CephRemoveOsd', { me.isCreate = true; - me.title = gettext('Remove') + ': ' + 'Ceph OSD osd.' + me.osdid.toString(); + me.title = gettext('Destroy') + ': Ceph OSD osd.' + me.osdid.toString(); Ext.applyIf(me, { url: "/nodes/" + me.nodename + "/ceph/osd/" + me.osdid.toString() @@ -401,7 +401,7 @@ Ext.define('PVE.node.CephOsdTree', { }); var remove_btn = new Ext.Button({ - text: gettext('Remove'), + text: gettext('Destroy'), disabled: true, handler: function(){ var rec = sm.getSelection()[0];