cloudstack 3.0 UI - VPC - localize Configure VPC Chart (Reviewed-by: Brian)

This commit is contained in:
Jessica Wang 2012-08-29 13:26:08 -07:00
parent 8f9d6e48b8
commit 05fef0fb25
1 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@
var $browser = args.$browser;
var detailView = args.detailView;
var $router = $('<li>').addClass('tier virtual-router');
var $title = $('<span>').addClass('title').html('Virtual Router');
var $title = $('<span>').addClass('title').html(_l('label.virtual.router'));
$router.append($title);
@ -407,7 +407,7 @@
if (isPlaceholder) {
$tier.addClass('placeholder');
$title.html('Create Tier');
$title.html(_l('label.add.new.tier'));
} else {
$title.html(
cloudStack.concat(name, 8)
@ -416,7 +416,7 @@
$cidr.html(cidr);
$vmCount.append(
$('<span>').addClass('total').html(virtualMachines != null? virtualMachines.length: 0),
' VMs'
_l('label.vms')
);
$tier.append($actions);