From 7b817a2ad9aa2f9c718d69af65a4be2c0944aa87 Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Fri, 21 Mar 2014 14:48:32 -0700 Subject: [PATCH] CLOUDSTACK-6272: UI > Instance > actions > replace internal action name "restore" with "recover", "reset" with "reinstall". --- ui/scripts/instances.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ui/scripts/instances.js b/ui/scripts/instances.js index 0242e350e4c..cc69b006074 100644 --- a/ui/scripts/instances.js +++ b/ui/scripts/instances.js @@ -660,9 +660,9 @@ poll: pollAsyncJobResult } }, - restore: { + recover: { label: 'label.recover.vm', - compactLabel: 'label.restore', + compactLabel: 'label.recover.vm', messages: { confirm: function(args) { return 'message.recover.vm'; @@ -694,7 +694,7 @@ } } }, - reset: { + reinstall: { label: 'label.reinstall.vm', messages: { confirm: function(args) { @@ -2197,7 +2197,7 @@ if (jsonObj.state == 'Destroyed') { if (isAdmin() || isDomainAdmin()) { - allowedActions.push("restore"); + allowedActions.push("recover"); } if (isAdmin() || isDomainAdmin()) allowedActions.push("expunge"); @@ -2207,7 +2207,7 @@ if (jsonObj.hypervisor != 'KVM' || g_kvmsnapshotenabled == true) allowedActions.push("snapshot"); allowedActions.push("destroy"); - allowedActions.push("reset"); + allowedActions.push("reinstall"); //when userVm is running, scaleUp is not supported for KVM if (jsonObj.hypervisor != 'KVM') { @@ -2233,7 +2233,7 @@ allowedActions.push("edit"); allowedActions.push("start"); allowedActions.push("destroy"); - allowedActions.push("reset"); + allowedActions.push("reinstall"); if (jsonObj.hypervisor != 'KVM' || g_kvmsnapshotenabled == true) allowedActions.push("snapshot"); allowedActions.push("scaleUp"); //when vm is stopped, scaleUp is supported for all hypervisors