Changeset 13526 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Oct 23, 2008 10:41:13 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38366
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/main.cpp
r13518 r13526 414 414 vsprintf (msgBuf, pszMsgFmt, va); 415 415 416 QString msgText = QApplication::tr ("%1\n\nrc=%2").arg (msgBuf).arg(rc); 416 QString msgText = QApplication::tr ( 417 "<html><b>%1 (rc=%2)</b><br/><br/>").arg (msgBuf).arg (rc); 417 418 switch (enmWhat) 418 419 { 419 420 case kSupInitOp_Driver: 420 msgText += QApplication::tr ( "\n\n"421 msgText += QApplication::tr ( 421 422 #ifdef RT_OS_LINUX 422 423 "The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or " 423 424 "there is a permission problem with /dev/vboxdrv. Re-setup the kernel " 424 "module by executing \n\n"425 " '/etc/init.d/vboxdrv setup'\n\n"425 "module by executing<br/><br/>" 426 " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>" 426 427 "as root. Users of Ubuntu or Fedora should install the DKMS package " 427 428 "at first. This package keeps track of Linux kernel changes and " … … 435 436 case kSupInitOp_Integrity: 436 437 case kSupInitOp_RootCheck: 437 msgText += QApplication::tr (" \n\nIt may help to reinstall VirtualBox."); /* hope this isn't (C), (TM) or (R) Microsoft support ;-) */438 msgText += QApplication::tr ("It may help to reinstall VirtualBox."); /* hope this isn't (C), (TM) or (R) Microsoft support ;-) */ 438 439 break; 439 440 default: … … 441 442 break; 442 443 } 444 msgText += "</html>"; 443 445 444 446 #ifdef RT_OS_LINUX
Note:
See TracChangeset
for help on using the changeset viewer.