CLOUDSTACK-6412: Fix localization for 'isdedicated' field

This commit is contained in:
Brian Federle 2014-09-15 13:13:32 -07:00
parent b04cc75065
commit e6b8aedc54
1 changed files with 2 additions and 2 deletions

View File

@ -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) {