]> git.proxmox.com Git - pve-manager.git/commitdiff
fix #4194: ui: clarify that it's actually a bulk shutdown, not a stop
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 14 Jan 2023 16:36:18 +0000 (17:36 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 14 Jan 2023 16:41:04 +0000 (17:41 +0100)
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 <t.lamprecht@proxmox.com>
www/manager6/node/CmdMenu.js
www/manager6/node/Config.js

index 3d60e9cba6dd30749c1332362761ea231d73bd42..1d16fd43307249df7846c803ede044fb65477533 100644 (file)
@@ -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,
                });
index 7e5b111282d362d03d7b7df3ffdc0dcb4d64d9e3..f8577b0f7b6b0cd65ed6dea13293cfad61e3d3d4 100644 (file)
@@ -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();