Changeset 93867 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 21, 2022 12:14:42 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserNodeGlobal.cpp
r93115 r93867 73 73 QString UIChooserNodeGlobal::description() const 74 74 { 75 return name();75 return m_strDescription; 76 76 } 77 77 … … 163 163 void UIChooserNodeGlobal::retranslateUi() 164 164 { 165 /* Translate name : */165 /* Translate name & description: */ 166 166 m_strName = tr("Tools"); 167 m_strDescription = tr("Item"); 167 168 168 169 /* Update global-item: */ -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserNodeGroup.cpp
r93115 r93867 105 105 QString UIChooserNodeGroup::description() const 106 106 { 107 return m_strDescription;107 return name(); 108 108 } 109 109 … … 303 303 void UIChooserNodeGroup::retranslateUi() 304 304 { 305 /* Update description: */306 m_strDescription = tr("Virtual Machine group");307 308 305 /* Update group-item: */ 309 306 if (item())
Note:
See TracChangeset
for help on using the changeset viewer.