- Timestamp:
- Aug 3, 2017 7:35:33 AM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.cpp
r67811 r68264 226 226 if (m_pActionDetails) 227 227 { 228 m_pActionDetails->setText(UIHostNetworkManager::tr("& Details..."));229 m_pActionDetails->setToolTip(UIHostNetworkManager::tr("Open Host-only Network Details (%1)").arg(m_pActionDetails->shortcut().toString()));230 m_pActionDetails->setStatusTip(UIHostNetworkManager::tr("Open pane with selected host-only network details"));228 m_pActionDetails->setText(UIHostNetworkManager::tr("&Properties...")); 229 m_pActionDetails->setToolTip(UIHostNetworkManager::tr("Open Host-only Network Properties (%1)").arg(m_pActionDetails->shortcut().toString())); 230 m_pActionDetails->setStatusTip(UIHostNetworkManager::tr("Open pane with selected host-only network properties")); 231 231 } 232 232 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r68018 r68264 814 814 if (m_pActionDetails) 815 815 { 816 m_pActionDetails->setText(UIMediumManager::tr("& Details..."));817 m_pActionDetails->setToolTip(tr("Open Disk Image File Details (%1)").arg(m_pActionDetails->shortcut().toString()));818 m_pActionDetails->setStatusTip(UIMediumManager::tr("Open pane with selected disk image file details"));816 m_pActionDetails->setText(UIMediumManager::tr("&Properties...")); 817 m_pActionDetails->setToolTip(tr("Open Disk Image File Properties (%1)").arg(m_pActionDetails->shortcut().toString())); 818 m_pActionDetails->setStatusTip(UIMediumManager::tr("Open pane with selected disk image file properties")); 819 819 } 820 820 if (m_pActionRefresh) -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISnapshotPane.cpp
r67546 r68264 520 520 m_pActionDeleteSnapshot->setText(tr("&Delete")); 521 521 m_pActionRestoreSnapshot->setText(tr("&Restore")); 522 m_pActionShowSnapshotDetails->setText(tr(" D&etails..."));522 m_pActionShowSnapshotDetails->setText(tr("&Properties...")); 523 523 m_pActionCloneSnapshot->setText(tr("&Clone...")); 524 524 /* Translate actions tool-tips: */ … … 529 529 m_pActionRestoreSnapshot->setToolTip(tr("Restore Snapshot (%1)") 530 530 .arg(m_pActionRestoreSnapshot->shortcut().toString())); 531 m_pActionShowSnapshotDetails->setToolTip(tr("Open Snapshot Details (%1)")531 m_pActionShowSnapshotDetails->setToolTip(tr("Open Snapshot Properties (%1)") 532 532 .arg(m_pActionShowSnapshotDetails->shortcut().toString())); 533 533 m_pActionCloneSnapshot->setToolTip(tr("Clone Virtual Machine (%1)") … … 537 537 m_pActionDeleteSnapshot->setStatusTip(tr("Delete selected snapshot of the virtual machine")); 538 538 m_pActionRestoreSnapshot->setStatusTip(tr("Restore selected snapshot of the virtual machine")); 539 m_pActionShowSnapshotDetails->setStatusTip(tr("Open pane with the selected snapshot details"));539 m_pActionShowSnapshotDetails->setStatusTip(tr("Open pane with the selected snapshot properties")); 540 540 m_pActionCloneSnapshot->setStatusTip(tr("Clone selected virtual machine")); 541 541
Note:
See TracChangeset
for help on using the changeset viewer.