mirror of https://github.com/apache/cloudstack.git
compute: Adding message to unmanage vm (#656)
Fixes #644 Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
3cc68d2b9d
commit
3f9ef02650
|
|
@ -367,6 +367,7 @@ export default {
|
|||
api: 'unmanageVirtualMachine',
|
||||
icon: 'disconnect',
|
||||
label: 'label.action.unmanage.virtualmachine',
|
||||
message: 'message.action.unmanage.virtualmachine',
|
||||
dataView: true,
|
||||
show: (record) => { return ['Running', 'Stopped'].includes(record.state) && record.hypervisor === 'VMware' }
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2417,6 +2417,7 @@
|
|||
"message.action.stop.router": "All services provided by this virtual router will be interrupted. Please confirm that you want to stop this router.",
|
||||
"message.action.stop.systemvm": "Please confirm that you want to stop this system VM.",
|
||||
"message.action.unmanage.cluster": "Please confirm that you want to unmanage the cluster.",
|
||||
"message.action.unmanage.virtualmachine": "Please confirm that you want to unmanage the virtual machine.",
|
||||
"message.action.vmsnapshot.create": "Please confirm that you want to take a snapshot of this instance. <br>Please notice that the instance will be paused during the snapshoting, and resumed after snapshotting, if it runs on KVM.",
|
||||
"message.action.vmsnapshot.delete": "Please confirm that you want to delete this VM snapshot. <br>Please notice that the instance will be paused before the snapshot deletion, and resumed after deletion, if it runs on KVM.",
|
||||
"message.action.vmsnapshot.revert": "Revert VM snapshot",
|
||||
|
|
|
|||
Loading…
Reference in New Issue