From 3f9ef02650ffce5cbdf5c208114f0e3e5fb56b4a Mon Sep 17 00:00:00 2001 From: davidjumani Date: Wed, 2 Sep 2020 14:05:25 +0530 Subject: [PATCH] compute: Adding message to unmanage vm (#656) Fixes #644 Signed-off-by: Rohit Yadav --- ui/src/config/section/compute.js | 1 + ui/src/locales/en.json | 1 + 2 files changed, 2 insertions(+) diff --git a/ui/src/config/section/compute.js b/ui/src/config/section/compute.js index db43affcb9a..97b6ec0f3c3 100644 --- a/ui/src/config/section/compute.js +++ b/ui/src/config/section/compute.js @@ -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' } }, diff --git a/ui/src/locales/en.json b/ui/src/locales/en.json index b70a47f30b3..d2e2c2c68a2 100644 --- a/ui/src/locales/en.json +++ b/ui/src/locales/en.json @@ -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.
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.
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",