Skip to content

Commit 7a9bfce

Browse files
Merge release branch 4.7 to master
* 4.7: CLOUDSTACK-9267: String is not localized on create instance wizards.
2 parents 908b769 + 9610056 commit 7a9bfce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ui/scripts/network.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6051,7 +6051,7 @@
60516051
var items = [];
60526052
items.push({
60536053
id: '',
6054-
description: 'label.none'
6054+
description: _l('label.none')
60556055
});
60566056
items.push({
60576057
id: 'modp1024',
@@ -6119,7 +6119,7 @@
61196119
var items = [];
61206120
items.push({
61216121
id: '',
6122-
description: 'label.none'
6122+
description: _l('label.none')
61236123
});
61246124
items.push({
61256125
id: 'modp1024',
@@ -6400,7 +6400,7 @@
64006400
var items = [];
64016401
items.push({
64026402
id: '',
6403-
description: 'label.none'
6403+
description: _l('label.none')
64046404
});
64056405
items.push({
64066406
id: 'modp1024',
@@ -6468,7 +6468,7 @@
64686468
var items = [];
64696469
items.push({
64706470
id: '',
6471-
description: 'label.none'
6471+
description: _l('label.none')
64726472
});
64736473
items.push({
64746474
id: 'modp1024',

ui/scripts/ui-custom/instanceWizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@
372372

373373
$select.addClass('selected').append(
374374
$('<div>').addClass('hypervisor')
375-
.append($('<label>').html('Hypervisor:'))
375+
.append($('<label>').html(_l('label.hypervisor') + ':'))
376376
.append($('<select>').attr({
377377
name: 'hypervisorid'
378378
}))

ui/scripts/ui-custom/projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@
706706
*/
707707
var addProject = function() {
708708
pageElems.newProjectForm().dialog({
709-
title: 'label.new.project',
709+
title: _l('label.new.project'),
710710
closeOnEscape: false,
711711
width: 760
712712
}).closest('.ui-dialog').overlay();

0 commit comments

Comments
 (0)