Changeset 8780 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 12, 2008 12:14:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMInformationDlg.ui.h
r8718 r8780 539 539 .arg (RT_HIWORD (addVersion)).arg (RT_LOWORD (addVersion)) : 540 540 tr ("Not Detected", "guest additions"); 541 QString osType = console.GetGuest().GetOSTypeId().isNull() ? 542 tr ("Not Detected", "guest os type") : console.GetGuest().GetOSTypeId(); 541 QString osType = console.GetGuest().GetOSTypeId(); 542 if (osType.isNull()) 543 osType = tr ("Not Detected", "guest os type"); 543 544 544 545 result += hdrRow.arg ("state_running_16px.png").arg (tr ("Runtime Attributes")); … … 591 592 if (hdStat.isNull()) 592 593 { 593 hdStat = composeArticle (tr (" Hard Disks not attached"));594 hdStat = composeArticle (tr ("No Hard Disks")); 594 595 hdStat += paragraph; 595 596 } … … 625 626 if (naStat.isNull()) 626 627 { 627 naStat = composeArticle (tr ("N etwork Adapters not attached"));628 naStat = composeArticle (tr ("No Network Adapters")); 628 629 naStat += paragraph; 629 630 }
Note:
See TracChangeset
for help on using the changeset viewer.