diff options
Diffstat (limited to 'panes/wizardNewVM.html')
-rw-r--r-- | panes/wizardNewVM.html | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/panes/wizardNewVM.html b/panes/wizardNewVM.html index 8f9c233..3fe1641 100644 --- a/panes/wizardNewVM.html +++ b/panes/wizardNewVM.html @@ -66,7 +66,7 @@ </div>
<!-- Step 3 -->
-<div id='wizardNewVMStep3' title='Hard drive' style='display: none'>
+<div id='wizardNewVMStep3' title='Hard disk' style='display: none'>
<span id='newVMHDSizeLabel'></span>
@@ -75,13 +75,13 @@ <table class='vboxOptions' id='newVMBootDiskTable' style='width:100%;'>
<tr>
- <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="none" onClick="newVMToggleNewDisk(true)" /> <span class='translate vboxEnablerListen'>Do not add a virtual hard drive</span></label></td>
+ <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="none" onClick="newVMToggleNewDisk(true)" /> <span class='translate vboxEnablerListen'>Do not add a virtual hard disk</span></label></td>
</tr>
<tr id='newVMHDTriggerBind' class='vboxEnablerTrigger'>
- <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="create" onClick="newVMToggleNewDisk(true)" checked='checked' /> <span class='translate vboxEnablerListen'>Create a virtual hard drive now</span></label></td>
+ <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="create" onClick="newVMToggleNewDisk(true)" checked='checked' /> <span class='translate vboxEnablerListen'>Create a virtual hard disk now</span></label></td>
</tr>
<tr>
- <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="existing" onClick="newVMToggleNewDisk(false)" /> <span class='translate vboxEnablerListen'>Use an existing virtual hard drive file</span></label></td>
+ <td style='padding:2px; padding-left: 14px'><label><input type="radio" class="vboxRadio" name="newVMDisk" value="existing" onClick="newVMToggleNewDisk(false)" /> <span class='translate vboxEnablerListen'>Use an existing virtual hard disk file</span></label></td>
</tr>
<tr>
<td style='padding-left: 24px; white-space: nowrap'>
@@ -206,12 +206,11 @@ function newVMUpdateOS(ostype) { "to be allocated to the virtual machine.</p>"+
"<p>The recommended memory size is <b>%1</b> MB.</p>",'UIWizardNewVM').replace('%1',ostype.recommendedRAM));
- $('#newVMHDSizeLabel').html(trans("<p>If you wish you can add a virtual hard drive to the new machine. "+
- "You can either create a new hard drive file or select one from the list "+
- "or from another location using the folder icon.</p>"+
- "<p>If you need a more complex storage set-up you can skip this step "+
- "and make the changes to the machine settings once the machine is created.</p>"+
- "<p>The recommended size of the hard drive is <b>%1</b>.</p>",'UIWizardNewVM').replace('%1',vboxMbytesConvert(ostype.recommendedHDD)));
+ $('#newVMHDSizeLabel').html(trans("<p>If you wish you can add a virtual hard disk to the new machine. "+
+ "You can either create a new hard disk file or select one from the list or from another location "+
+ "using the folder icon.</p><p>If you need a more complex storage set-up you can skip this step "+
+ "and make the changes to the machine settings once the machine is created.</p><p>The recommended "+
+ "size of the hard disk is <b>%1</b>.</p>",'UIWizardNewVM').replace('%1',vboxMbytesConvert(ostype.recommendedHDD)));
}
|