]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
reword suspend
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 29 Mar 2019 09:44:32 +0000 (10:44 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 30 Mar 2019 11:41:41 +0000 (12:41 +0100)
we have now have two suspend modes:

* pause: leave the process running and pause the guest cpu
* hibernate: save the state (and memory) to disk, stop the vm

since the meanings of suspend and hibernate are too close,
we change the old 'suspend' to 'pause'

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
Utils.js

index ef4aa5ece3474cf9da699d9c9bd5aa5b1feba828..f1935ecfd4cca618e651eea7c2666670a25c89f8 100644 (file)
--- a/Utils.js
+++ b/Utils.js
@@ -447,7 +447,8 @@ Ext.define('Proxmox.Utils', { utilities: {
        qmstop: [ 'VM', gettext('Stop') ],
        qmreset: [ 'VM', gettext('Reset') ],
        qmshutdown: [ 'VM', gettext('Shutdown') ],
-       qmsuspend: [ 'VM', gettext('Suspend') ],
+       qmsuspend: [ 'VM', gettext('Hibernate') ],
+       qmpause: [ 'VM', gettext('Pause') ],
        qmresume: [ 'VM', gettext('Resume') ],
        qmconfig: [ 'VM', gettext('Configure') ],
        vzsnapshot: [ 'CT', gettext('Snapshot') ],