Changeset 93818 in vbox for trunk/src/VBox
- Timestamp:
- Feb 17, 2022 9:23:11 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r93115 r93818 161 161 m_pLabelMaximumGuestScreenHeight->setText(tr("&Height:")); 162 162 m_pLabelScaleFactor->setText(tr("Scale &Factor:")); 163 m_pEditorScaleFactor->set WhatsThis(tr("Controls the guest screen scale factor."));163 m_pEditorScaleFactor->setToolTip(tr("Controls the guest screen scale factor.")); 164 164 m_pLabelMachineWindows->setText(tr("Machine Windows:")); 165 m_pCheckBoxActivateOnMouseHover->setWhatsThis(tr("When checked, machine windows will be raised when the mouse pointer moves over them.")); 165 m_pCheckBoxActivateOnMouseHover->setToolTip(tr("When checked, machine windows will be raised " 166 "when the mouse pointer moves over them.")); 166 167 m_pCheckBoxActivateOnMouseHover->setText(tr("&Raise Window Under Mouse")); 167 168 if (m_pCheckBoxDisableHostScreenSaver) 168 169 { 169 m_pCheckBoxDisableHostScreenSaver->set WhatsThis(tr("When checked, screen saver of the host OS is disabled."));170 m_pCheckBoxDisableHostScreenSaver->setToolTip(tr("When checked, screen saver of the host OS is disabled.")); 170 171 m_pCheckBoxDisableHostScreenSaver->setText(tr("&Disable Host Screen Saver")); 171 172 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.cpp
r93115 r93818 120 120 { 121 121 m_pLabelColorTheme->setText(tr("Color &Theme:")); 122 m_pEditorColorTheme->set WhatsThis(tr("Selects the color theme. It can be Light, Dark or automatically detected (default)."));122 m_pEditorColorTheme->setToolTip(tr("Selects the color theme. It can be Light, Dark or automatically detected (default).")); 123 123 } 124 124 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r93115 r93818 199 199 void UIGlobalSettingsProxy::retranslateUi() 200 200 { 201 m_pRadioButtonProxyAuto->set WhatsThis(tr("When chosen, VirtualBox will try to auto-detect host proxy settings for tasks like "202 "downloading Guest Additions from the network or checking for updates."));201 m_pRadioButtonProxyAuto->setToolTip(tr("When chosen, VirtualBox will try to auto-detect host proxy settings for tasks like " 202 "downloading Guest Additions from the network or checking for updates.")); 203 203 m_pRadioButtonProxyAuto->setText(tr("&Auto-detect Host Proxy Settings")); 204 m_pRadioButtonProxyDisabled->set WhatsThis(tr("When chosen, VirtualBox will use direct Internet connection for tasks like downloading"205 "Guest Additions from the network or checking for updates."));204 m_pRadioButtonProxyDisabled->setToolTip(tr("When chosen, VirtualBox will use direct Internet connection for tasks like " 205 "downloading Guest Additions from the network or checking for updates.")); 206 206 m_pRadioButtonProxyDisabled->setText(tr("&Direct Connection to the Internet")); 207 m_pRadioButtonProxyEnabled->set WhatsThis(tr("When chosen, VirtualBox will use the proxy settings supplied for tasks like downloading"208 "Guest Additions from the network or checking for updates."));207 m_pRadioButtonProxyEnabled->setToolTip(tr("When chosen, VirtualBox will use the proxy settings supplied for tasks like " 208 "downloading Guest Additions from the network or checking for updates.")); 209 209 m_pRadioButtonProxyEnabled->setText(tr("&Manual Proxy Configuration")); 210 211 /* Translate proxy URL editor: */ 210 212 m_pLabelHost->setText(tr("&URL:")); 211 212 /* Translate proxy URL editor: */ 213 m_pEditorHost->setWhatsThis(tr("Holds the proxy URL. " 214 "The format is: " 215 "<table cellspacing=0 style='white-space:pre'>" 216 "<tr><td>[{type}://][{userid}[:{password}]@]{server}[:{port}]</td></tr>" 217 "<tr><td>http://username:[email protected]:port</td></tr>" 218 "</table>")); 213 m_pEditorHost->setToolTip(tr("Holds the proxy URL. " 214 "The format is: " 215 "<table cellspacing=0 style='white-space:pre'>" 216 "<tr><td>[{type}://][{userid}[:{password}]@]{server}[:{port}]</td></tr>" 217 "<tr><td>http://username:[email protected]:port</td></tr>" 218 "</table>")); 219 219 } 220 220
Note:
See TracChangeset
for help on using the changeset viewer.