Changeset 95394 in vbox
- Timestamp:
- Jun 27, 2022 3:16:35 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UINetworkFeaturesEditor.cpp
r94653 r95394 275 275 if (m_pEditorGenericProperties) 276 276 m_pEditorGenericProperties->setToolTip(tr("Holds the configuration settings for the network attachment driver. The " 277 "settings should be of the form <b>name=value</b>and will depend on the "278 "driver. Use <b>shift-enter</b>to add a new entry."));277 "settings should be of the form name=value and will depend on the " 278 "driver. Use shift-enter to add a new entry.")); 279 279 280 280 if (m_pCheckBoxCableConnected) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIRecordingSettingsEditor.cpp
r94436 r95394 314 314 "frames and reduce the file size.")); 315 315 m_pLabelFrameRateMin->setText(tr("%1 fps").arg(m_pSliderFrameRate->minimum())); 316 m_pLabelFrameRateMin->setToolTip(tr("Minimum possible frame rate.")); 316 317 m_pLabelFrameRateMax->setText(tr("%1 fps").arg(m_pSliderFrameRate->maximum())); 318 m_pLabelFrameRateMax->setToolTip(tr("Maximum possible frame rate.")); 317 319 318 320 m_pLabelVideoQuality->setText(tr("&Video Quality:")); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UISharedFoldersEditor.cpp
r95277 r95394 345 345 { 346 346 m_pTreeWidget->setWhatsThis(tr("Lists all shared folders accessible to this machine. Use 'net use x: \\\\vboxsvr\\share' " 347 "to access a shared folder named <i>share</i>from a DOS-like OS, or 'mount -t vboxsf "347 "to access a shared folder named 'share' from a DOS-like OS, or 'mount -t vboxsf " 348 348 "share mount_point' to access it from a Linux OS. This feature requires Guest Additions.")); 349 349 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIUSBFilterDetailsEditor.cpp
r95247 r95394 220 220 } 221 221 m_pComboRemote->setToolTip(tr("Holds whether this filter applies to USB devices attached locally to the host computer " 222 "( <i>No</i>), to a VRDP client's computer (<i>Yes</i>), or both (<i>Any</i>)."));222 "(No), to a VRDP client's computer (Yes), or both (Any).")); 223 223 } 224 224 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.cpp
r94675 r95394 457 457 m_pComboNumber->setItemText(m_pComboNumber->count() - 1, UITranslator::toCOMPortName(0, 0)); 458 458 m_pComboNumber->setToolTip(tr("Selects the serial port number. You can choose one of the standard serial ports or select " 459 " <b>User-defined</b>and specify port parameters manually."));459 "User-defined and specify port parameters manually.")); 460 460 } 461 461 if (m_pLabelIRQ) … … 464 464 m_pLineEditIRQ->setToolTip(tr("Holds the IRQ number of this serial port. This should be a whole number between " 465 465 "<tt>0</tt> and <tt>255</tt>. Values greater than <tt>15</tt> may only be used if the " 466 " <b>I/O APIC</b>setting is enabled for this virtual machine."));466 "I/O APIC setting is enabled for this virtual machine.")); 467 467 if (m_pLabelIOPort) 468 468 m_pLabelIOPort->setText(tr("I/O Po&rt:")); … … 473 473 m_pLabelMode->setText(tr("Port &Mode:")); 474 474 if (m_pComboMode) 475 m_pComboMode->setToolTip(tr("Selects the working mode of this serial port. If you select <b>Disconnected</b>, the guest "475 m_pComboMode->setToolTip(tr("Selects the working mode of this serial port. If you select Disconnected, the guest " 476 476 "OS will detect the serial port but will not be able to operate it.")); 477 477 if (m_pCheckBoxPipe) … … 479 479 m_pCheckBoxPipe->setText(tr("&Connect to existing pipe/socket")); 480 480 m_pCheckBoxPipe->setToolTip(tr("When checked, the virtual machine will assume that the pipe or socket specified in the " 481 " <b>Path/Address</b>field exists and try to use it. Otherwise, the pipe or socket will "481 "Path/Address field exists and try to use it. Otherwise, the pipe or socket will " 482 482 "be created by the virtual machine when it starts.")); 483 483 } … … 485 485 m_pLabelPath->setText(tr("&Path/Address:")); 486 486 if (m_pEditorPath) 487 m_pEditorPath->setToolTip(tr("<p>In <b>Host Pipe</b>mode: Holds the path to the serial port's pipe on the host. "487 m_pEditorPath->setToolTip(tr("<p>In Host Pipe mode: Holds the path to the serial port's pipe on the host. " 488 488 "Examples: \"\\\\.\\pipe\\myvbox\" or \"/tmp/myvbox\", for Windows and UNIX-like systems " 489 "respectively.</p><p>In <b>Host Device</b>mode: Holds the host serial device name. "490 "Examples: \"COM1\" or \"/dev/ttyS0\".</p><p>In <b>Raw File</b>mode: Holds the file-path "491 "on the host system, where the serial output will be dumped.</p><p>In <b>TCP</b>mode: "489 "respectively.</p><p>In Host Device mode: Holds the host serial device name. " 490 "Examples: \"COM1\" or \"/dev/ttyS0\".</p><p>In Raw File mode: Holds the file-path " 491 "on the host system, where the serial output will be dumped.</p><p>In TCP mode: " 492 492 "Holds the TCP \"port\" when in server mode, or \"hostname:port\" when in client mode.")); 493 493
Note:
See TracChangeset
for help on using the changeset viewer.