mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-04 09:42:50 +00:00
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 <t.lamprecht@proxmox.com>
This commit is contained in:
parent
a75bace1f4
commit
31fcdc1e8e
@ -43,14 +43,14 @@ Ext.define('PVE.node.CmdMenu', {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: gettext('Bulk Stop'),
|
text: gettext('Bulk Shutdown'),
|
||||||
itemId: 'bulkstop',
|
itemId: 'bulkstop',
|
||||||
iconCls: 'fa fa-fw fa-stop',
|
iconCls: 'fa fa-fw fa-stop',
|
||||||
handler: function() {
|
handler: function() {
|
||||||
Ext.create('PVE.window.BulkAction', {
|
Ext.create('PVE.window.BulkAction', {
|
||||||
nodename: this.up('menu').nodename,
|
nodename: this.up('menu').nodename,
|
||||||
title: gettext('Bulk Stop'),
|
title: gettext('Bulk Shutdown'),
|
||||||
btnText: gettext('Stop'),
|
btnText: gettext('Shutdown'),
|
||||||
action: 'stopall',
|
action: 'stopall',
|
||||||
autoShow: true,
|
autoShow: true,
|
||||||
});
|
});
|
||||||
|
@ -51,13 +51,13 @@ Ext.define('PVE.node.Config', {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: gettext('Bulk Stop'),
|
text: gettext('Bulk Shutdown'),
|
||||||
iconCls: 'fa fa-fw fa-stop',
|
iconCls: 'fa fa-fw fa-stop',
|
||||||
handler: function() {
|
handler: function() {
|
||||||
var win = Ext.create('PVE.window.BulkAction', {
|
var win = Ext.create('PVE.window.BulkAction', {
|
||||||
nodename: nodename,
|
nodename: nodename,
|
||||||
title: gettext('Bulk Stop'),
|
title: gettext('Bulk Shutdown'),
|
||||||
btnText: gettext('Stop'),
|
btnText: gettext('Shutdown'),
|
||||||
action: 'stopall',
|
action: 'stopall',
|
||||||
});
|
});
|
||||||
win.show();
|
win.show();
|
||||||
|
Loading…
Reference in New Issue
Block a user