- Timestamp:
- Sep 26, 2007 7:58:33 AM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro
r5022 r5037 84 84 images/vmw_new_welcome.png \ 85 85 images/vmw_new_harddisk.png \ 86 images/vmw_new_user.png \ 86 87 images/fd_16px.png \ 87 88 images/fd_read_16px.png \ -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r5022 r5037 1408 1408 const QString &aReason) 1409 1409 { 1410 /* we don't want to expose the registration script URL to the user 1411 * if he simply doesn't have an internet connection */ 1412 Q_UNUSED (aURL); 1413 1410 1414 message (aParent, Error, 1411 tr ("<p>Failed to connect to the VirtualBox network " 1412 "registration form " 1413 "<nobr><a href=\"%1\">%2</a>.</nobr></p><p>%3</p>") 1414 .arg (aURL).arg (aURL).arg (aReason)); 1415 tr ("<p>Failed to connect to the VirtualBox online " 1416 "registration service.</p><p>%1</p>") 1417 .arg (aReason)); 1415 1418 } 1416 1419 … … 1420 1423 aResult == "OK" ? 1421 1424 message (aParent, Info, 1422 tr ("<p><nobr>You have successfully registered with innotek. " 1423 "Thank you for registration.</nobr></p>")) : 1425 tr ("<p>Congratulations! You have successfully registered the " 1426 "VirtualBox product.</p>" 1427 "<p>Thank you for finding time to fill out the " 1428 "registration form!</p>")) : 1424 1429 message (aParent, Error, 1425 tr ("<p>Registration failed (%1)</p>").arg (aResult)); 1430 tr ("<p>Failed to register the VirtualBox product (%1).</p>") 1431 .arg (aResult)); 1426 1432 } 1427 1433
Note:
See TracChangeset
for help on using the changeset viewer.