diff options
Diffstat (limited to 'panes/wizardCopyHDAdvanced.html')
-rw-r--r-- | panes/wizardCopyHDAdvanced.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/panes/wizardCopyHDAdvanced.html b/panes/wizardCopyHDAdvanced.html index 37c7943..d45ee61 100644 --- a/panes/wizardCopyHDAdvanced.html +++ b/panes/wizardCopyHDAdvanced.html @@ -88,26 +88,28 @@ for(var i = 0; i < vboxHDTypes.length; i++) { vboxHDTypesTbl.find('input[value='+$('#vboxPane').data('vboxSystemProperties').defaultHardDiskFormat+']').prop('checked',true).closest('tr').detach().prependTo(vboxHDTypesTbl);
/* Choose virtual hard drive button */
-new vboxToolbarSingle({
+new vboxToolbarSingle({button: {
'name' : 'mselecthdbtn',
- 'label' : trans('Choose a virtual hard drive file to copy...','UIWizardCloneVD'),
+ 'label' : 'Choose a virtual hard drive file to copy...',
+ 'language_context': 'UIWizardCloneVD',
'icon' : 'select_file',
'click' : function () {
vboxMedia.actions.choose(null,'HardDisk',function(med){
if(med) copyHDFillDisks(med.base);
});
}
-}).renderTo('newVMDiskVMM');
+}}).renderTo('newVMDiskVMM');
/* Choose location of new file button */
-new vboxToolbarSingle({
+new vboxToolbarSingle({button: {
'name' : 'mselecthdbtn',
- 'label' : trans('Choose a location for new virtual hard drive file...','UIWizardNewVD'),
+ 'label' : 'Choose a location for new virtual hard drive file...',
+ 'language_context': 'UIWizardNewVD',
'icon' : 'select_file',
'click' : function () {
wizardCopyHDBrowseLocation();
}
-}).renderTo('newVMDiskVMMDest');
+}}).renderTo('newVMDiskVMMDest');
/* Set up disk selection box */
|