Changeset 92489 in vbox
- Timestamp:
- Nov 18, 2021 7:36:02 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/medium/viso
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoBrowserBase.cpp
r92471 r92489 94 94 { 95 95 if (m_pExpandButton) 96 m_pExpandButton->setToolTip(QApplication::translate("UIVisoCreator ", "Click to show/hide the tree view."));96 m_pExpandButton->setToolTip(QApplication::translate("UIVisoCreatorWidget", "Click to show/hide the tree view.")); 97 97 if (m_pLineEdit) 98 m_pLineEdit->setToolTip(QApplication::translate("UIVisoCreator ", "Shows the current location."));98 m_pLineEdit->setToolTip(QApplication::translate("UIVisoCreatorWidget", "Shows the current location.")); 99 99 } 100 100 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoConfigurationPanel.cpp
r92272 r92489 71 71 72 72 /* Name edit and and label: */ 73 m_pVisoNameLabel = new QILabel(QApplication::translate("UIVisoCreator ", "VISO Name:"));73 m_pVisoNameLabel = new QILabel(QApplication::translate("UIVisoCreatorWidget", "VISO Name:")); 74 74 m_pVisoNameLineEdit = new QILineEdit; 75 75 if (m_pVisoNameLabel && m_pVisoNameLineEdit) … … 83 83 84 84 /* Cutom Viso options stuff: */ 85 m_pCustomOptionsLabel = new QILabel(QApplication::translate("UIVisoCreator ", "Custom VISO options:"));85 m_pCustomOptionsLabel = new QILabel(QApplication::translate("UIVisoCreatorWidget", "Custom VISO options:")); 86 86 m_pCustomOptionsComboBox = new QComboBox; 87 87 m_pDeleteButton = new QIToolButton; … … 112 112 { 113 113 if (m_pVisoNameLabel) 114 m_pVisoNameLabel->setText(QApplication::translate("UIVisoCreator ", "VISO Name:"));114 m_pVisoNameLabel->setText(QApplication::translate("UIVisoCreatorWidget", "VISO Name:")); 115 115 if (m_pCustomOptionsLabel) 116 m_pCustomOptionsLabel->setText(QApplication::translate("UIVisoCreator ", "Custom VISO options:"));116 m_pCustomOptionsLabel->setText(QApplication::translate("UIVisoCreatorWidget", "Custom VISO options:")); 117 117 if (m_pDeleteButton) 118 m_pDeleteButton->setToolTip(QApplication::translate("UIVisoCreator ", "Remove current option."));118 m_pDeleteButton->setToolTip(QApplication::translate("UIVisoCreatorWidget", "Remove current option.")); 119 119 } 120 120 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoContentBrowser.cpp
r91328 r92489 235 235 if (pRootItem) 236 236 { 237 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Name"), UICustomFileSystemModelColumn_Name);238 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Size"), UICustomFileSystemModelColumn_Size);239 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Change Time"), UICustomFileSystemModelColumn_ChangeTime);240 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Owner"), UICustomFileSystemModelColumn_Owner);241 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Permissions"), UICustomFileSystemModelColumn_Permissions);242 pRootItem->setData(QApplication::translate("UIVisoCreator ", "Local Path"), UICustomFileSystemModelColumn_LocalPath);243 pRootItem->setData(QApplication::translate("UIVisoCreator ", "ISO Path"), UICustomFileSystemModelColumn_Path);237 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Name"), UICustomFileSystemModelColumn_Name); 238 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Size"), UICustomFileSystemModelColumn_Size); 239 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Change Time"), UICustomFileSystemModelColumn_ChangeTime); 240 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Owner"), UICustomFileSystemModelColumn_Owner); 241 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Permissions"), UICustomFileSystemModelColumn_Permissions); 242 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "Local Path"), UICustomFileSystemModelColumn_LocalPath); 243 pRootItem->setData(QApplication::translate("UIVisoCreatorWidget", "ISO Path"), UICustomFileSystemModelColumn_Path); 244 244 } 245 245 } -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorOptionsPanel.cpp
r82968 r92489 51 51 { 52 52 if (m_pShowHiddenObjectsLabel) 53 m_pShowHiddenObjectsLabel->setText(QApplication::translate("UIVisoCreator ", "Show Hidden Objects"));53 m_pShowHiddenObjectsLabel->setText(QApplication::translate("UIVisoCreatorWidget", "Show Hidden Objects")); 54 54 } 55 55 … … 68 68 69 69 m_pShowHiddenObjectsCheckBox = new QCheckBox; 70 m_pShowHiddenObjectsLabel = new QILabel(QApplication::translate("UIVisoCreator ", "Show Hidden Objects"));70 m_pShowHiddenObjectsLabel = new QILabel(QApplication::translate("UIVisoCreatorWidget", "Show Hidden Objects")); 71 71 m_pShowHiddenObjectsLabel->setBuddy(m_pShowHiddenObjectsCheckBox); 72 72 mainLayout()->addWidget(m_pShowHiddenObjectsCheckBox, 0, Qt::AlignLeft);
Note:
See TracChangeset
for help on using the changeset viewer.