VirtualBox

Changeset 56153 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 29, 2015 2:00:35 PM (10 years ago)
Author:
vboxsync
Message:

FE/Qt: Global Preferences dialog: NLS consistency fix.

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  
    6464     </property>
    6565     <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>
    6767     </property>
    6868    </widget>
     
    9090     </property>
    9191     <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>
    9393     </property>
    9494    </widget>
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp

    r55928 r56153  
    284284
    285285    /* 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());
    288294}
    289295
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.ui

    r55346 r56153  
    7474    <widget class="QLabel" name="m_pLabelHostScreenSaver">
    7575     <property name="text">
    76       <string>&amp;Host Screensaver:</string>
     76      <string>Host Screensaver:</string>
    7777     </property>
    7878     <property name="alignment">
     
    9090     </property>
    9191     <property name="text">
    92       <string>Disable When Running Virtual Machines</string>
     92      <string>&amp;Disable When Running Virtual Machines</string>
    9393     </property>
    9494    </widget>
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp

    r53295 r56153  
    224224    m_pTabWidget->setTabText(UIHotKeyTableIndex_Selector, tr("&VirtualBox Manager"));
    225225    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."));
    232230}
    233231
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetwork.cpp

    r55928 r56153  
    657657
    658658        /* 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_pActionAddNetworkNAT->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_pActionEditNetworkNAT->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());
    670670    }
    671671
     
    673673    {
    674674        /* 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_pActionAddNetworkHost->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_pActionEditNetworkHost->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());
    686686    }
    687687}
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetailsHost.ui

    r48576 r56153  
    5252         </property>
    5353         <property name="toolTip">
    54           <string>Use manual configuration for this host-only network adapter.</string>
     54          <string>When checked, manual configuration will be used for this network adapter.</string>
    5555         </property>
    5656        </widget>
     
    186186         </property>
    187187         <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>
    189189         </property>
    190190        </widget>
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetworkDetailsNAT.ui

    r48577 r56153  
    2525     </property>
    2626     <property name="toolTip">
    27       <string>Enable this NAT network.</string>
     27      <string>When checked, this network will be enabled.</string>
    2828     </property>
    2929    </widget>
     
    104104        </property>
    105105        <property name="toolTip">
    106          <string>Determines whether this network supports DHCP.</string>
     106         <string>When checked, this network will support DHCP.</string>
    107107        </property>
    108108       </widget>
     
    114114        </property>
    115115        <property name="toolTip">
    116          <string>Determines whether this network supports IPv6.</string>
     116         <string>When checked, this network will support IPv6.</string>
    117117        </property>
    118118       </widget>
     
    124124        </property>
    125125        <property name="toolTip">
    126          <string>Determines whether this network should be advertised as the default IPv6 route.</string>
     126         <string>When checked, this network will be advertised as the default IPv6 route.</string>
    127127        </property>
    128128       </widget>
     
    131131       <widget class="QPushButton" name="m_pButtonPortForwarding">
    132132        <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>
    134134        </property>
    135135        <property name="text">
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.ui

    r48546 r56153  
    7373       <widget class="QILineEdit" name="m_pHostEditor">
    7474        <property name="whatsThis">
    75          <string>Changes the proxy host.</string>
     75         <string>Holds the proxy host.</string>
    7676        </property>
    7777       </widget>
     
    9393       <widget class="QILineEdit" name="m_pPortEditor">
    9494        <property name="whatsThis">
    95          <string>Changes the proxy port.</string>
     95         <string>Holds the proxy port.</string>
    9696        </property>
    9797       </widget>
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.ui

    r48546 r56153  
    6969         <widget class="QComboBox" name="m_pComboBoxUpdatePeriod">
    7070          <property name="whatsThis">
    71            <string>Specifies 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>
    7272          </property>
    7373          <property name="sizePolicy">
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette