Changeset 105804 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 21, 2024 10:51:31 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164516
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r105553 r105804 1869 1869 { 1870 1870 int rc = question(0, MessageType_Info, 1871 tr("<p>You have <b>clicked the mouse</b> inside the Virtual Machine display or pressed the <b>host key </b>. "1871 tr("<p>You have <b>clicked the mouse</b> inside the Virtual Machine display or pressed the <b>host key combo</b>. " 1872 1872 "This will cause the Virtual Machine to <b>capture</b> the host mouse pointer (only if the mouse pointer " 1873 1873 "integration is not currently supported by the guest OS) and the keyboard, which will make them " 1874 1874 "unavailable to other applications running on your host machine.</p>" 1875 "<p>You can press the <b>host key </b> at any time to <b>uncapture</b> the keyboard and mouse "1875 "<p>You can press the <b>host key combo</b> at any time to <b>uncapture</b> the keyboard and mouse " 1876 1876 "(if it is captured) and return them to normal operation. " 1877 "The currently assigned host key is shown on the status bar at the bottom of the Virtual Machine window, "1877 "The currently assigned host key combo is shown on the status bar at the bottom of the Virtual Machine window, " 1878 1878 "next to the <img src=:/hostkey_16px.png/> icon. " 1879 1879 "This icon, together with the mouse icon placed nearby, indicate the current keyboard and mouse capture state.</p>") + 1880 tr("<p>The host key is currently defined as <b>%1</b>.</p>", "additional message box paragraph")1880 tr("<p>The host key combo is currently defined as <b>%1</b>.</p>", "additional message box paragraph") 1881 1881 .arg(UIHostCombo::toReadableString(gEDataManager->hostKeyCombination())), 1882 1882 "confirmInputCapture", -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r105558 r105804 515 515 "when the keyboard is captured, all keystrokes (including system ones " 516 516 "like Alt-Tab) will be directed to the VM.</p>" 517 "<p>You can press the <b>host key </b> at any time to <b>uncapture</b> the "517 "<p>You can press the <b>host key combo</b> at any time to <b>uncapture</b> the " 518 518 "keyboard and mouse (if it is captured) and return them to normal " 519 "operation. The currently assigned host key is shown on the status bar "519 "operation. The currently assigned host key combo is shown on the status bar " 520 520 "at the bottom of the Virtual Machine window. This icon, together " 521 521 "with the mouse icon placed nearby, indicate the current keyboard " 522 522 "and mouse capture state.</p>") + 523 QApplication::translate("UIMessageCenter", "<p>The host key is currently defined as <b>%1</b>.</p>",523 QApplication::translate("UIMessageCenter", "<p>The host key combo is currently defined as <b>%1</b>.</p>", 524 524 "additional message box paragraph") 525 525 .arg(UIHostCombo::toReadableString(gEDataManager->hostKeyCombination())), -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r105362 r105804 1451 1451 UISessionTextStatusBarIndicator::sltRetranslateUI(); 1452 1452 1453 setToolTip(tr("Shows the currently assigned Host key.<br>"1454 "This key , when pressed alone, toggles the keyboard and mouse "1453 setToolTip(tr("Shows the currently assigned Host Key Combo.<br>" 1454 "This key combo, when pressed alone, toggles the keyboard and mouse " 1455 1455 "capture state. It can also be used in combination with other keys " 1456 1456 "to quickly perform actions from the main menu.")); 1457 1457 1458 1458 /* Host-combo info: */ 1459 const QString strHostCombo = tr("Host -combo: %1").arg(text());1459 const QString strHostCombo = tr("Host Key Combo: %1").arg(text()); 1460 1460 m_strDescription = QString("%1, %2").arg(m_strDescription, strHostCombo); 1461 1461 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r104313 r105804 106 106 list << UIShortcutConfigurationItem(UIHostCombo::hostComboCacheKey(), 107 107 QString(), 108 tr("Host Key Comb ination"),108 tr("Host Key Combo"), 109 109 gEDataManager->hostKeyCombination(), 110 110 QString());
Note:
See TracChangeset
for help on using the changeset viewer.