We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9d6e4 commit 05fef0fCopy full SHA for 05fef0f
1 file changed
ui/scripts/ui-custom/vpc.js
@@ -309,7 +309,7 @@
309
var $browser = args.$browser;
310
var detailView = args.detailView;
311
var $router = $('<li>').addClass('tier virtual-router');
312
- var $title = $('<span>').addClass('title').html('Virtual Router');
+ var $title = $('<span>').addClass('title').html(_l('label.virtual.router'));
313
314
$router.append($title);
315
@@ -407,7 +407,7 @@
407
408
if (isPlaceholder) {
409
$tier.addClass('placeholder');
410
- $title.html('Create Tier');
+ $title.html(_l('label.add.new.tier'));
411
} else {
412
$title.html(
413
cloudStack.concat(name, 8)
@@ -416,7 +416,7 @@
416
$cidr.html(cidr);
417
$vmCount.append(
418
$('<span>').addClass('total').html(virtualMachines != null? virtualMachines.length: 0),
419
- ' VMs'
+ _l('label.vms')
420
);
421
$tier.append($actions);
422
0 commit comments