Changeset 105242 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDetailsGenerator.cpp
- Timestamp:
- Jul 9, 2024 3:09:33 PM (10 months ago)
- svn:sync-xref-src-repo-rev:
- 163888
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDetailsGenerator.cpp
r105241 r105242 1361 1361 /* Append adapter data: */ 1362 1362 strInfo += e_strTableRow1 1363 .arg(QApplication::translate("UIIndicator sPool", "Adapter %1 (%2)", "Network tooltip")1363 .arg(QApplication::translate("UIIndicatorNetwork", "Adapter %1 (%2)") 1364 1364 .arg(uSlot + 1).arg(gpConverter->toString(comAdapter.GetAttachmentType()))); 1365 1365 if (!strGuestIp.isEmpty()) 1366 1366 strInfo += e_strTableRow3 1367 .arg(QApplication::translate("UIIndicator sPool", "IP", "Network tooltip"), strGuestIp);1367 .arg(QApplication::translate("UIIndicatorNetwork", "IP"), strGuestIp); 1368 1368 strInfo += e_strTableRow3 1369 .arg(QApplication::translate("UIIndicator sPool", "Cable", "Network tooltip"))1369 .arg(QApplication::translate("UIIndicatorNetwork", "Cable")) 1370 1370 .arg(fCableConnected ? 1371 QApplication::translate("UIIndicator sPool", "Connected", "cable (Network tooltip)") :1372 QApplication::translate("UIIndicator sPool", "Disconnected", "cable (Network tooltip)"));1371 QApplication::translate("UIIndicatorNetwork", "Connected", "cable") : 1372 QApplication::translate("UIIndicatorNetwork", "Disconnected", "cable")); 1373 1373 } 1374 1374 } … … 1393 1393 if (strInfo.isNull()) 1394 1394 strInfo = e_strTableRow1 1395 .arg(QApplication::translate("UIIndicator sPool", "No USB devices attached", "USB tooltip"));1395 .arg(QApplication::translate("UIIndicatorUSB", "No USB devices attached")); 1396 1396 } 1397 1397 } … … 1421 1421 if (!fFoldersPresent) 1422 1422 strInfo = e_strTableRow1 1423 .arg(QApplication::translate("UIIndicator sPool", "No shared folders", "Shared folders tooltip"));1423 .arg(QApplication::translate("UIIndicatorSharedFolders", "No shared folders")); 1424 1424 } 1425 1425 … … 1434 1434 const QString strVRAMSize = QApplication::translate("UICommon", "<nobr>%1 MB</nobr>", "details report").arg(uVRAMSize); 1435 1435 strInfo += e_strTableRow2 1436 .arg(QApplication::translate("UIIndicator sPool", "Video memory", "Display tooltip"), strVRAMSize);1436 .arg(QApplication::translate("UIIndicatorDisplay", "Video memory"), strVRAMSize); 1437 1437 1438 1438 /* Monitor Count: */ … … 1442 1442 const QString strMonitorCount = QString::number(uMonitorCount); 1443 1443 strInfo += e_strTableRow2 1444 .arg(QApplication::translate("UIIndicator sPool", "Screens", "Display tooltip"), strMonitorCount);1444 .arg(QApplication::translate("UIIndicatorDisplay", "Screens"), strMonitorCount); 1445 1445 } 1446 1446 … … 1453 1453 : QApplication::translate("UICommon", "Disabled", "details report (3D Acceleration)"); 1454 1454 strInfo += e_strTableRow2 1455 .arg(QApplication::translate("UIIndicator sPool", "3D acceleration", "Display tooltip"), strAcceleration3D);1455 .arg(QApplication::translate("UIIndicatorDisplay", "3D acceleration"), strAcceleration3D); 1456 1456 } 1457 1457 } … … 1473 1473 QString strToolTip; 1474 1474 if (fVideoEnabled && fAudioEnabled) 1475 strToolTip = QApplication::translate("UIIndicator sPool", "Video/audio recording file", "Recording tooltip");1475 strToolTip = QApplication::translate("UIIndicatorRecording", "Video/audio recording file"); 1476 1476 else if (fAudioEnabled) 1477 strToolTip = QApplication::translate("UIIndicator sPool", "Audio recording file", "Recording tooltip");1477 strToolTip = QApplication::translate("UIIndicatorRecording", "Audio recording file"); 1478 1478 else if (fVideoEnabled) 1479 strToolTip = QApplication::translate("UIIndicator sPool", "Video recording file", "Recording tooltip");1479 strToolTip = QApplication::translate("UIIndicatorRecording", "Video recording file"); 1480 1480 strInfo += e_strTableRow2 1481 1481 .arg(strToolTip) … … 1486 1486 { 1487 1487 strInfo += e_strTableRow1 1488 .arg(QApplication::translate("UIIndicator sPool", "Recording disabled", "Recording tooltip"));1488 .arg(QApplication::translate("UIIndicatorRecording", "Recording disabled")); 1489 1489 } 1490 1490 }
Note:
See TracChangeset
for help on using the changeset viewer.