From 31fcdc1e8e5afa9f6f9b37aceb4c4d9a54cd754c Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 14 Jan 2023 17:36:18 +0100 Subject: [PATCH] fix #4194: ui: clarify that it's actually a bulk shutdown, not a stop As some users where confused by the usage of "Stop", which we normally reserve for a hard-stop. And yes, while the bulk shutdown formerly always had a timeout armed hard-stop hard coded, it was still subtle and we recently exposed control on that via the API an UI, so use shutdown to be more in line with the CT/VM naming, e.g., in their power menus. Signed-off-by: Thomas Lamprecht --- www/manager6/node/CmdMenu.js | 6 +++--- www/manager6/node/Config.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/www/manager6/node/CmdMenu.js b/www/manager6/node/CmdMenu.js index 3d60e9cb..1d16fd43 100644 --- a/www/manager6/node/CmdMenu.js +++ b/www/manager6/node/CmdMenu.js @@ -43,14 +43,14 @@ Ext.define('PVE.node.CmdMenu', { }, }, { - text: gettext('Bulk Stop'), + text: gettext('Bulk Shutdown'), itemId: 'bulkstop', iconCls: 'fa fa-fw fa-stop', handler: function() { Ext.create('PVE.window.BulkAction', { nodename: this.up('menu').nodename, - title: gettext('Bulk Stop'), - btnText: gettext('Stop'), + title: gettext('Bulk Shutdown'), + btnText: gettext('Shutdown'), action: 'stopall', autoShow: true, }); diff --git a/www/manager6/node/Config.js b/www/manager6/node/Config.js index 7e5b1112..f8577b0f 100644 --- a/www/manager6/node/Config.js +++ b/www/manager6/node/Config.js @@ -51,13 +51,13 @@ Ext.define('PVE.node.Config', { }, }, { - text: gettext('Bulk Stop'), + text: gettext('Bulk Shutdown'), iconCls: 'fa fa-fw fa-stop', handler: function() { var win = Ext.create('PVE.window.BulkAction', { nodename: nodename, - title: gettext('Bulk Stop'), - btnText: gettext('Stop'), + title: gettext('Bulk Shutdown'), + btnText: gettext('Shutdown'), action: 'stopall', }); win.show();