Changeset 3951 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 31, 2007 7:47:27 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r3943 r3951 240 240 mainLayout->addItem (spacer); 241 241 242 languageChange();243 mStatusBar->addWidget (this);244 245 242 /* Select the product version */ 246 243 QString version = vboxGlobal().virtualBox().GetVersion(); … … 265 262 this, SLOT (processAbort())); 266 263 264 languageChange(); 265 mStatusBar->addWidget (this); 266 267 267 /* Try to get the required file for the information */ 268 268 mHttp->get (mPath + mFile); … … 272 272 { 273 273 mCancelButton->setText (tr ("Cancel")); 274 QToolTip::add (mProgressBar, tr ("VirtualBox Guest Additions Image " 275 "downloading progress")); 276 QToolTip::add (mCancelButton, tr ("Press to cancel VirtualBox Guest " 277 "Additions Image downloading process")); 274 QToolTip::add (mProgressBar, tr ("Downloading the VirtualBox Guest Additions CD image " 275 "from <nobr><b>%1</b>...</nobr>") 276 .arg (mProtocol + mHost + mPath + mFile)); 277 QToolTip::add (mCancelButton, tr ("Cancel the VirtualBox Guest " 278 "Additions CD image download")); 278 279 } 279 280 … … 349 350 { 350 351 mHttp->abort(); 351 abortDownload (tr ("Download aborted by user.")); 352 abortDownload (tr ("The download process has been cancelled " 353 "by the user.")); 352 354 } 353 355 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r3947 r3951 1259 1259 return message (&vboxGlobal().consoleWnd(), Question, 1260 1260 tr ("<p>Failed to find the VirtualBox Guest Additions " 1261 "CD image <nobr><b>%1</b></nobr> or "1261 "CD image file <nobr><b>%1</b></nobr> or " 1262 1262 "<nobr><b>%2</b>.</nobr></p><p>Do you want to " 1263 "download this image from the Internet?</p>")1263 "download this CD image from the Internet?</p>") 1264 1264 .arg (aSrc1).arg (aSrc2), 1265 1265 0, /* autoConfirmId */ … … 1294 1294 { 1295 1295 return message (&vboxGlobal().consoleWnd(), Question, 1296 tr ("<p>The VirtualBox Guest Additions CD image was"1296 tr ("<p>The VirtualBox Guest Additions CD image has been " 1297 1297 "successfully downloaded from " 1298 1298 "<nobr><a href=\"%1\">%2</a></nobr> "
Note:
See TracChangeset
for help on using the changeset viewer.