From d156a122deee0c179ba0cb2d51cb9c5827709b0f Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Tue, 21 Aug 2012 16:46:04 -0700 Subject: [PATCH] cloudstack 3.0 UI - VPC feature - fix a bug that shortLabel was not localizable. (Reviewed-by: Brian) --- ui/scripts/ui-custom/vpc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/ui-custom/vpc.js b/ui/scripts/ui-custom/vpc.js index 7e7d44a9196..79be48ed026 100644 --- a/ui/scripts/ui-custom/vpc.js +++ b/ui/scripts/ui-custom/vpc.js @@ -423,7 +423,7 @@ $action.addClass(action.id); if (action.id != 'remove') { - $action.append($('').addClass('label').html(shortLabel)); + $action.append($('').addClass('label').html(_l(shortLabel))); } else { $action.append($('').addClass('icon').html(' ')); }