Changeset 5194 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 9, 2007 11:07:47 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25121
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r5160 r5194 1197 1197 vmStartAction->setMenuText (tr ("S&how")); 1198 1198 vmStartAction->setText (tr ("Show")); 1199 vmStartAction->setAccel (QString::null);1200 1199 vmStartAction->setStatusTip ( 1201 1200 tr ("Switch to the window of the selected virtual machine")); … … 1207 1206 vmStartAction->setMenuText (tr ("S&tart")); 1208 1207 vmStartAction->setText (tr ("Start")); 1209 vmStartAction->setAccel (QString::null);1210 1208 vmStartAction->setStatusTip ( 1211 1209 tr ("Start the selected virtual machine")); … … 1273 1271 vmStartAction->setMenuText (tr ("S&tart")); 1274 1272 vmStartAction->setText (tr ("Start")); 1275 vmStartAction->setAccel (QString::null);1276 1273 vmStartAction->setStatusTip ( 1277 1274 tr ("Start the selected virtual machine")); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxDiskImageManagerDlg.ui
r4947 r5194 362 362 <property name="text"> 363 363 <string>&OK</string> 364 </property>365 <property name="accel">366 <string>Alt+O</string>367 364 </property> 368 365 <property name="autoDefault"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxGlobalSettingsDlg.ui
r4947 r5194 477 477 <string>Enable &VT-x/AMD-V</string> 478 478 </property> 479 <property name="accel">480 <string>Alt+V</string>481 </property>482 479 <property name="whatsThis" stdset="0"> 483 480 <string>Defines whether virtual machines should try to make use of the host CPU's hardware virtualization extensions such as Intel VT-x and AMD-V by default or not.</string> … … 581 578 <property name="text"> 582 579 <string>&Auto capture keyboard</string> 583 </property>584 <property name="accel">585 <string>Alt+A</string>586 580 </property> 587 581 <property name="whatsThis" stdset="0"> … … 1136 1130 <property name="text"> 1137 1131 <string>&OK</string> 1138 </property>1139 <property name="accel">1140 <string>Alt+O</string>1141 1132 </property> 1142 1133 <property name="autoDefault"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxNewHDWzd.ui
r4071 r5194 232 232 <string>&Dynamically expanding image</string> 233 233 </property> 234 <property name="accel">235 <string>Alt+D</string>236 </property>237 234 <property name="checked"> 238 235 <bool>true</bool> … … 245 242 <property name="text"> 246 243 <string>&Fixed-size image</string> 247 </property>248 <property name="accel">249 <string>Alt+F</string>250 244 </property> 251 245 </widget> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxSnapshotDetailsDlg.ui
r4947 r5194 221 221 <property name="text"> 222 222 <string>&OK</string> 223 </property>224 <property name="accel">225 <string>Alt+O</string>226 223 </property> 227 224 <property name="autoDefault"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxTakeSnapshotDlg.ui
r4947 r5194 236 236 <property name="text"> 237 237 <string>&OK</string> 238 </property>239 <property name="accel">240 <string>Alt+O</string>241 238 </property> 242 239 <property name="autoDefault"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMFirstRunWzd.ui
r4204 r5194 267 267 <string>&CD/DVD-ROM Device</string> 268 268 </property> 269 <property name="accel">270 <string>Alt+C</string>271 </property>272 269 <property name="checked"> 273 270 <bool>false</bool> … … 283 280 <property name="text"> 284 281 <string>&Floppy Device</string> 285 </property>286 <property name="accel">287 <string>Alt+F</string>288 282 </property> 289 283 </widget> … … 357 351 <string>&Host Drive</string> 358 352 </property> 359 <property name="accel">360 <string>Alt+H</string>361 </property>362 353 <property name="checked"> 363 354 <bool>false</bool> … … 413 404 <property name="text"> 414 405 <string>&Image File</string> 415 </property>416 <property name="accel">417 <string>Alt+I</string>418 406 </property> 419 407 </widget> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMLogViewer.ui
r4071 r5194 94 94 <string>&Find</string> 95 95 </property> 96 <property name="accel">97 <string>Alt+F</string>98 </property>99 96 </widget> 100 97 <widget class="QPushButton"> … … 104 101 <property name="text"> 105 102 <string>&Save</string> 106 </property>107 <property name="accel">108 <string>Alt+S</string>109 103 </property> 110 104 <property name="autoDefault"> … … 121 115 <property name="text"> 122 116 <string>&Refresh</string> 123 </property>124 <property name="accel">125 <string>Alt+R</string>126 117 </property> 127 118 </widget> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMLogViewer.ui.h
r4164 r5194 120 120 void languageChange() 121 121 { 122 QKeySequence accel; 123 122 124 QToolTip::add (mButtonClose, tr ("Close the search panel")); 125 123 126 mSearchName->setText (tr ("Find ")); 124 127 QToolTip::add (mSearchString, tr ("Enter a search string here")); 125 mButtonPrev->setTextLabel (tr ("&Previous")); 126 mButtonPrev->setAccel (QKeySequence (tr ("Alt+P")));128 129 VBoxGlobal::setTextLabel (mButtonPrev, tr ("&Previous")); 127 130 QToolTip::add (mButtonPrev, 128 131 tr ("Search for the previous occurrence of the string")); 129 mButtonNext->setTextLabel (tr ("&Next")); 130 mButtonNext->setAccel (QKeySequence (tr ("Alt+N")));132 133 VBoxGlobal::setTextLabel (mButtonNext, tr ("&Next")); 131 134 QToolTip::add (mButtonNext, 132 135 tr ("Search for the next occurrence of the string")); 136 133 137 mCaseSensitive->setText (tr ("C&ase Sensitive")); 134 138 QToolTip::add (mCaseSensitive, 135 139 tr ("Perform case sensitive search (when checked)")); 140 136 141 mWarningString->setText (tr ("String not found")); 137 142 } -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMNetworkSettings.ui
r5127 r5194 145 145 <string>&Generate</string> 146 146 </property> 147 <property name="accel">148 <string>Alt+G</string>149 </property>150 147 <property name="whatsThis" stdset="0"> 151 148 <string>Generates a new random MAC address.</string> … … 206 203 <property name="text"> 207 204 <string>Ca&ble Connected</string> 208 </property>209 <property name="accel">210 <string>Alt+B</string>211 205 </property> 212 206 <property name="whatsThis" stdset="0"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSerialPortSettings.ui
r4324 r5194 168 168 <property name="text"> 169 169 <string>&Create Pipe</string> 170 </property>171 <property name="accel">172 <string>Alt+C</string>173 170 </property> 174 171 <property name="whatsThis" stdset="0"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui
r4947 r5194 1055 1055 <string>Enable A&CPI</string> 1056 1056 </property> 1057 <property name="accel">1058 <string>Alt+C</string>1059 </property>1060 1057 <property name="whatsThis" stdset="0"> 1061 1058 <string><qt>When checked, the virtual machine will support … … 1071 1068 <string>Enable IO A&PIC</string> 1072 1069 </property> 1073 <property name="accel">1074 <string>Alt+P</string>1075 </property>1076 1070 <property name="whatsThis" stdset="0"> 1077 1071 <string><qt>When checked, the virtual machine will support … … 1086 1080 <property name="text"> 1087 1081 <string>Enable &VT-x/AMD-V</string> 1088 </property>1089 <property name="accel">1090 <string>Alt+V</string>1091 1082 </property> 1092 1083 <property name="tristate"> … … 1294 1285 <property name="text"> 1295 1286 <string>&Remember Media Mounted at Runtime</string> 1296 </property>1297 <property name="accel">1298 <string>Alt+R</string>1299 1287 </property> 1300 1288 <property name="checked"> … … 1582 1570 <string>Host CD/DVD &Drive</string> 1583 1571 </property> 1584 <property name="accel">1585 <string>Alt+D</string>1586 </property>1587 1572 <property name="whatsThis" stdset="0"> 1588 1573 <string>Mounts the specified CD/DVD drive to the virtual CD/DVD drive.</string> … … 1659 1644 <string>&Enable Passthrough</string> 1660 1645 </property> 1661 <property name="accel">1662 <string>Alt+E</string>1663 </property>1664 1646 <property name="whatsThis" stdset="0"> 1665 1647 <string>When checked, allows the guest to send ATAPI commands directly to the host drive which makes it possible to use CD/DVD writers connected to the host inside the VM. Note that writing audio CD inside the VM is not yet supported.</string> … … 1682 1664 <property name="text"> 1683 1665 <string>&ISO Image File</string> 1684 </property>1685 <property name="accel">1686 <string>Alt+I</string>1687 1666 </property> 1688 1667 <property name="whatsThis" stdset="0"> … … 1839 1818 <string>Host Floppy &Drive</string> 1840 1819 </property> 1841 <property name="accel">1842 <string>Alt+D</string>1843 </property>1844 1820 <property name="whatsThis" stdset="0"> 1845 1821 <string>Mounts the specified host Floppy drive to the virtual Floppy drive.</string> … … 1887 1863 <property name="text"> 1888 1864 <string>&Image File</string> 1889 </property>1890 <property name="accel">1891 <string>Alt+I</string>1892 1865 </property> 1893 1866 <property name="whatsThis" stdset="0"> … … 2265 2238 <property name="text"> 2266 2239 <string>Enable &USB Controller</string> 2267 </property>2268 <property name="accel">2269 <string>Alt+U</string>2270 2240 </property> 2271 2241 <property name="whatsThis" stdset="0"> … … 2856 2826 <property name="text"> 2857 2827 <string>&OK</string> 2858 </property>2859 <property name="accel">2860 <string>Alt+O</string>2861 2828 </property> 2862 2829 <property name="autoDefault">
Note:
See TracChangeset
for help on using the changeset viewer.