From e6b8aedc5434556b2746dd43f8fd4cb5dec99bce Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Mon, 15 Sep 2014 13:13:32 -0700 Subject: [PATCH] CLOUDSTACK-6412: Fix localization for 'isdedicated' field --- ui/scripts/system.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 54aafe299b0..71118ff592e 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -16074,12 +16074,12 @@ var hostItem = json.listdedicatedhostsresponse.dedicatedhost[0]; if (hostItem.domainid != null) { $.extend(item, hostItem, { - isdedicated: 'label.yes' + isdedicated: _l('label.yes') }); } } else $.extend(item, { - isdedicated: 'label.no' + isdedicated: _l('label.no') }) }, error: function (json) {