gui: CmdMenu: rename suspend to paus

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2019-03-29 10:44:34 +01:00 committed by Thomas Lamprecht
parent 995a8ea2c6
commit a33f612bcf

View File

@ -64,12 +64,12 @@ Ext.define('PVE.qemu.CmdMenu', {
}
},
{
text: gettext('Suspend'),
text: gettext('Pause'),
iconCls: 'fa fa-fw fa-pause',
hidden: stopped || suspended,
disabled: stopped || suspended,
handler: function() {
var msg = Proxmox.Utils.format_task_description('qmsuspend', vmid);
var msg = Proxmox.Utils.format_task_description('qmpause', vmid);
Ext.Msg.confirm(gettext('Confirm'), msg, function(btn) {
if (btn !== 'yes') {
return;