Changeset 8118 in vbox
- Timestamp:
- Apr 17, 2008 5:32:44 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29820
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r8071 r8118 192 192 bool confirmHardDiskUnregister (QWidget *parent, const QString &src); 193 193 194 int confirm SATASlotsRemoving(QWidget *aParent);194 int confirmDetachSATASlots (QWidget *aParent); 195 195 196 196 void cannotCreateHardDiskImage ( -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r8071 r8118 1055 1055 } 1056 1056 1057 int VBoxProblemReporter::confirm SATASlotsRemoving(QWidget *aParent)1057 int VBoxProblemReporter::confirmDetachSATASlots (QWidget *aParent) 1058 1058 { 1059 1059 return messageOkCancel (aParent, Question, 1060 tr ("<p>Currently you have SATA devices attached in Hard Disk " 1061 "attachments list. If you really want to disable SATA Controller, " 1062 "SATA attachments will be removed.</p><p>Are you really want to " 1063 "disable the SATA Controller?</p>"), 1064 0 /* aAutoConfirmId */); 1060 tr ("<p>There are hard disks attached to SATA ports of this virtual " 1061 "machine. If you disable the SATA controller, all these hard disks " 1062 "will be automatically detached.</p>" 1063 "<p>Are you sure that you want to " 1064 "disable the SATA controller?</p>"), 1065 0 /* aAutoConfirmId */, 1066 tr ("Disable", "hard disk")); 1065 1067 } 1066 1068 -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxHardDiskSettings.ui
r8117 r8118 61 61 </property> 62 62 <property name="whatsThis" stdset="0"> 63 <string>Flag whether the SATA controller is present in the 64 guest system. If disabled, the virtual guest hardware will 65 not contain any SATA controller.</string> 63 <string> 64 <qt>When checked, enables the virtual SATA 65 controller of this machine. Note that you cannot 66 attach hard disks to SATA ports when the virtual SATA 67 controller is disabled.</qt> 68 </string> 66 69 </property> 67 70 </widget> … … 110 113 </property> 111 114 <property name="whatsThis" stdset="0"> 112 <string>Hard Disks Attachments list displays all the assigned hard disk attachments used for this VM. Use mouse double-click or F2/Space key on the selected item to popup selection-list and choose the desired value.</string> 115 <string> 116 <qt>Lists all hard disks attached to 117 this machine. Use a mouse double-click or the 118 <tt>F2</tt>/<tt>Space</tt> 119 key on the highlighted item to activate the 120 drop-down list and choose the desired value. 121 Use buttons to the right to add or remove hard 122 disk attachments.</qt> 123 </string> 113 124 </property> 114 125 </widget> … … 144 155 </property> 145 156 <property name="whatsThis" stdset="0"> 146 <string>Add new hard disk attachment into attachments list.</string> 157 <string> 158 <qt> Adds a new hard disk 159 attachment.</qt> 160 </string> 147 161 </property> 148 162 </widget> … … 167 181 </property> 168 182 <property name="whatsThis" stdset="0"> 169 <string>Remove selected hard disk attachment from attachments list.</string> 183 <string> 184 <qt>Removes the highlighted hard 185 disk attachment.</qt> 186 </string> 170 187 </property> 171 188 </widget> … … 190 207 </property> 191 208 <property name="whatsThis" stdset="0"> 192 <string>Invokes the Virtual Disk Manager to select a VDI image to attach.</string> 209 <string> 210 <qt> Invokes the Virtual Disk 211 Manager to select a hard disk to 212 attach to the currently highlighted 213 slot.</qt> 214 </string> 193 215 </property> 194 216 </widget> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxHardDiskSettings.ui.h
r8117 r8118 611 611 if (idList.contains (id)) 612 612 { 613 result = tr ("%1 uses disk image already assigned to %2") 613 result = tr ("<i>%1</i> uses the hard disk that is already " 614 "attached to <i>%2</i>") 614 615 .arg (item->text (0)).arg (slList [idList.findIndex (id)]); 615 616 break; … … 707 708 if (sataItem) 708 709 { 709 int rc = vboxProblem().confirm SATASlotsRemoving(this);710 int rc = vboxProblem().confirmDetachSATASlots (this); 710 711 if (rc != QIMessageBox::Ok) 711 712 {
Note:
See TracChangeset
for help on using the changeset viewer.