Changeset 72090 in vbox
- Timestamp:
- May 3, 2018 12:50:00 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122482
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r72045 r72090 312 312 { 313 313 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 314 Utf8StrFmt(GuestSession::tr("Reading %RU32 bytes @ %RU64 ,failed: %Rrc"), cbChunk, cbWrittenTotal, rc));314 Utf8StrFmt(GuestSession::tr("Reading %RU32 bytes @ %RU64 from guest failed: %Rrc"), cbChunk, cbWrittenTotal, rc)); 315 315 break; 316 316 } … … 320 320 { 321 321 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 322 Utf8StrFmt(GuestSession::tr("Writing to %RU32 bytes to filefailed: %Rrc"), cbRead, rc));322 Utf8StrFmt(GuestSession::tr("Writing %RU32 bytes to file on host failed: %Rrc"), cbRead, rc)); 323 323 break; 324 324 } … … 639 639 { 640 640 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 641 Utf8StrFmt(GuestSession::tr("Reading %RU32 bytes @ %RU64 ,failed: %Rrc"), cbChunk, cbWrittenTotal, rc));641 Utf8StrFmt(GuestSession::tr("Reading %RU32 bytes @ %RU64 from host failed: %Rrc"), cbChunk, cbWrittenTotal, rc)); 642 642 break; 643 643 } … … 647 647 { 648 648 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 649 Utf8StrFmt(GuestSession::tr("Writing to %zu bytes to filefailed: %Rrc"), cbRead, rc));649 Utf8StrFmt(GuestSession::tr("Writing %zu bytes to file on guest failed: %Rrc"), cbRead, rc)); 650 650 break; 651 651 }
Note:
See TracChangeset
for help on using the changeset viewer.