diff --git a/client/WEB-INF/classes/resources/messages.properties b/client/WEB-INF/classes/resources/messages.properties index c70d95c5598..dfa4505a47e 100644 --- a/client/WEB-INF/classes/resources/messages.properties +++ b/client/WEB-INF/classes/resources/messages.properties @@ -1355,6 +1355,7 @@ message.number.storage=

# of Primary Storage Volumes

message.number.zones=

# of Zones

message.remove.vpn.access=Please confirm that you want to remove VPN access from the following user. message.restart.mgmt.server=Please restart your management server(s) for your new settings to take effect. +message.restart.mgmt.usage.server=Please restart your management server(s) and usage server(s) for your new settings to take effect. message.security.group.usage=(Use Ctrl-click to select all applicable security groups) message.snapshot.schedule=You can setup recurring snapshot schedules by selecting from the available options below and applying your policy preference message.step.1.continue=Please select a template or ISO to continue diff --git a/ui/index.jsp b/ui/index.jsp index c93836601ee..06654a4c91f 100644 --- a/ui/index.jsp +++ b/ui/index.jsp @@ -2781,6 +2781,7 @@ dictionary = { 'message.number.zones': '', 'message.remove.vpn.access': '', 'message.restart.mgmt.server': '', +'message.restart.mgmt.usage.server': '', 'message.security.group.usage': '', 'message.snapshot.schedule': '', 'message.step.1.continue': '', diff --git a/ui/scripts/globalSettings.js b/ui/scripts/globalSettings.js index 35bab25eb52..fdaaa0413ef 100644 --- a/ui/scripts/globalSettings.js +++ b/ui/scripts/globalSettings.js @@ -38,7 +38,10 @@ async: true, success: function(json) { var item = json.updateconfigurationresponse.configuration; - cloudStack.dialog.notice({ message: _l('message.restart.mgmt.server') }); + if(item.category == "Usage") + cloudStack.dialog.notice({ message: _l('message.restart.mgmt.usage.server') }); + else + cloudStack.dialog.notice({ message: _l('message.restart.mgmt.server') }); args.response.success({data: item}); }, error: function(json) {