Changeset 56153 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 29, 2015 2:00:35 PM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.ui
r56112 r56153 64 64 </property> 65 65 <property name="whatsThis"> 66 <string> Specifies the maximum width which we would like the guest to use.</string>66 <string>Holds the maximum width which we would like the guest to use.</string> 67 67 </property> 68 68 </widget> … … 90 90 </property> 91 91 <property name="whatsThis"> 92 <string> Specifies the maximum height which we would like the guest to use.</string>92 <string>Holds the maximum height which we would like the guest to use.</string> 93 93 </property> 94 94 </widget> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
r55928 r56153 284 284 285 285 /* Translate actions: */ 286 m_pActionAdd->setText(tr("Add package")); 287 m_pActionRemove->setText(tr("Remove package")); 286 m_pActionAdd->setText(tr("&Add Package")); 287 m_pActionRemove->setText(tr("&Remove Package")); 288 289 m_pActionAdd->setWhatsThis(tr("Adds new package.")); 290 m_pActionRemove->setWhatsThis(tr("Removes selected package.")); 291 292 m_pActionAdd->setToolTip(m_pActionAdd->whatsThis()); 293 m_pActionRemove->setToolTip(m_pActionRemove->whatsThis()); 288 294 } 289 295 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.ui
r55346 r56153 74 74 <widget class="QLabel" name="m_pLabelHostScreenSaver"> 75 75 <property name="text"> 76 <string> &Host Screensaver:</string>76 <string>Host Screensaver:</string> 77 77 </property> 78 78 <property name="alignment"> … … 90 90 </property> 91 91 <property name="text"> 92 <string> Disable When Running Virtual Machines</string>92 <string>&Disable When Running Virtual Machines</string> 93 93 </property> 94 94 </widget> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r53295 r56153 224 224 m_pTabWidget->setTabText(UIHotKeyTableIndex_Selector, tr("&VirtualBox Manager")); 225 225 m_pTabWidget->setTabText(UIHotKeyTableIndex_Machine, tr("Virtual &Machine")); 226 m_pSelectorTable->setWhatsThis(tr("Lists all the available shortcuts " 227 "which can be configured.")); 228 m_pMachineTable->setWhatsThis(tr("Lists all the available shortcuts " 229 "which can be configured.")); 230 m_pSelectorFilterEditor->setWhatsThis(tr("Enter a sequence to filter the shortcut list.")); 231 m_pMachineFilterEditor->setWhatsThis(tr("Enter a sequence to filter the shortcut list.")); 226 m_pSelectorTable->setWhatsThis(tr("Lists all available shortcuts which can be configured.")); 227 m_pMachineTable->setWhatsThis(tr("Lists all available shortcuts which can be configured.")); 228 m_pSelectorFilterEditor->setWhatsThis(tr("Holds a sequence to filter the shortcut list.")); 229 m_pMachineFilterEditor->setWhatsThis(tr("Holds a sequence to filter the shortcut list.")); 232 230 } 233 231 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetwork.cpp
r55928 r56153 657 657 658 658 /* Translate action text: */ 659 m_pActionAddNetworkNAT->setText(tr("&Add NAT network"));660 m_pActionDelNetworkNAT->setText(tr("&Remove NAT network"));661 m_pActionEditNetworkNAT->setText(tr("&Edit NAT network"));662 663 /* Recompose action tool-tips: */664 m_pAction AddNetworkNAT->setToolTip(m_pActionAddNetworkNAT->text().remove('&') +665 QString(" (%1)").arg(m_pActionAddNetworkNAT->shortcut().toString()));666 m_pActionDelNetworkNAT->setToolTip(m_pActionDelNetworkNAT->text().remove('&') + 667 QString(" (%1)").arg(m_pActionDelNetworkNAT->shortcut().toString()));668 m_pAction EditNetworkNAT->setToolTip(m_pActionEditNetworkNAT->text().remove('&') +669 QString(" (%1)").arg(m_pActionEditNetworkNAT->shortcut().toString()));659 m_pActionAddNetworkNAT->setText(tr("&Add NAT Network")); 660 m_pActionDelNetworkNAT->setText(tr("&Remove NAT Network")); 661 m_pActionEditNetworkNAT->setText(tr("&Edit NAT Network")); 662 663 m_pActionAddNetworkNAT->setWhatsThis(tr("Adds new NAT network.")); 664 m_pActionDelNetworkNAT->setWhatsThis(tr("Removes selected NAT network.")); 665 m_pActionEditNetworkNAT->setWhatsThis(tr("Edits selected NAT network.")); 666 667 m_pActionAddNetworkNAT->setToolTip(m_pActionAddNetworkNAT->whatsThis()); 668 m_pActionDelNetworkNAT->setToolTip(m_pActionDelNetworkNAT->whatsThis()); 669 m_pActionEditNetworkNAT->setToolTip(m_pActionEditNetworkNAT->whatsThis()); 670 670 } 671 671 … … 673 673 { 674 674 /* Translate action text: */ 675 m_pActionAddNetworkHost->setText(tr("&Add host-only network"));676 m_pActionDelNetworkHost->setText(tr("&Remove host-only network"));677 m_pActionEditNetworkHost->setText(tr("&Edit host-only network"));678 679 /* Recompose action tool-tips: */680 m_pAction AddNetworkHost->setToolTip(m_pActionAddNetworkHost->text().remove('&') +681 QString(" (%1)").arg(m_pActionAddNetworkHost->shortcut().toString()));682 m_pActionDelNetworkHost->setToolTip(m_pActionDelNetworkHost->text().remove('&') + 683 QString(" (%1)").arg(m_pActionDelNetworkHost->shortcut().toString()));684 m_pAction EditNetworkHost->setToolTip(m_pActionEditNetworkHost->text().remove('&') +685 QString(" (%1)").arg(m_pActionEditNetworkHost->shortcut().toString()));675 m_pActionAddNetworkHost->setText(tr("&Add Host-only Network")); 676 m_pActionDelNetworkHost->setText(tr("&Remove Host-only Network")); 677 m_pActionEditNetworkHost->setText(tr("&Edit Host-only Network")); 678 679 m_pActionAddNetworkHost->setWhatsThis(tr("Adds new host-only network.")); 680 m_pActionDelNetworkHost->setWhatsThis(tr("Removes selected host-only network.")); 681 m_pActionEditNetworkHost->setWhatsThis(tr("Edits selected host-only network.")); 682 683 m_pActionAddNetworkHost->setToolTip(m_pActionAddNetworkHost->whatsThis()); 684 m_pActionDelNetworkHost->setToolTip(m_pActionDelNetworkHost->whatsThis()); 685 m_pActionEditNetworkHost->setToolTip(m_pActionEditNetworkHost->whatsThis()); 686 686 } 687 687 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetailsHost.ui
r48576 r56153 52 52 </property> 53 53 <property name="toolTip"> 54 <string> Use manual configuration for this host-onlynetwork adapter.</string>54 <string>When checked, manual configuration will be used for this network adapter.</string> 55 55 </property> 56 56 </widget> … … 186 186 </property> 187 187 <property name="toolTip"> 188 <string> Indicates whether the DHCP Server is enabled on machine startup or not.</string>188 <string>When checked, DHCP Server will be enabled for this network on machine startup.</string> 189 189 </property> 190 190 </widget> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetailsNAT.ui
r48577 r56153 25 25 </property> 26 26 <property name="toolTip"> 27 <string> Enable this NAT network.</string>27 <string>When checked, this network will be enabled.</string> 28 28 </property> 29 29 </widget> … … 104 104 </property> 105 105 <property name="toolTip"> 106 <string> Determines whether this network supportsDHCP.</string>106 <string>When checked, this network will support DHCP.</string> 107 107 </property> 108 108 </widget> … … 114 114 </property> 115 115 <property name="toolTip"> 116 <string> Determines whether this network supportsIPv6.</string>116 <string>When checked, this network will support IPv6.</string> 117 117 </property> 118 118 </widget> … … 124 124 </property> 125 125 <property name="toolTip"> 126 <string> Determines whether this network shouldbe advertised as the default IPv6 route.</string>126 <string>When checked, this network will be advertised as the default IPv6 route.</string> 127 127 </property> 128 128 </widget> … … 131 131 <widget class="QPushButton" name="m_pButtonPortForwarding"> 132 132 <property name="whatsThis"> 133 <string> Opens a window to manage port forwarding rules.</string>133 <string>Displays the window to configure port forwarding rules.</string> 134 134 </property> 135 135 <property name="text"> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.ui
r48546 r56153 73 73 <widget class="QILineEdit" name="m_pHostEditor"> 74 74 <property name="whatsThis"> 75 <string> Changes the proxy host.</string>75 <string>Holds the proxy host.</string> 76 76 </property> 77 77 </widget> … … 93 93 <widget class="QILineEdit" name="m_pPortEditor"> 94 94 <property name="whatsThis"> 95 <string> Changes the proxy port.</string>95 <string>Holds the proxy port.</string> 96 96 </property> 97 97 </widget> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.ui
r48546 r56153 69 69 <widget class="QComboBox" name="m_pComboBoxUpdatePeriod"> 70 70 <property name="whatsThis"> 71 <string>S pecifies how often the new version check should be performed. Note that if you want to completely disable this check, just clear the above check box.</string>71 <string>Selects how often the new version check should be performed. Note that if you want to completely disable this check, just clear the above check box.</string> 72 72 </property> 73 73 <property name="sizePolicy">
Note:
See TracChangeset
for help on using the changeset viewer.