summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-worker.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-08-31 16:06:27 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-08-31 16:06:27 +0000
commit1a82c63ec114f123def943e16e8ec5ceaf8ed85a (patch)
treeab76b572a75f2ae5c0e22c1544b55c90efc3361d /apt-pkg/acquire-worker.cc
parent80a26ed1fb36c6cdc07a4dc08ed46a405065b949 (diff)
* include a human readable string for the MediaChange status-fd message as well
Diffstat (limited to 'apt-pkg/acquire-worker.cc')
-rw-r--r--apt-pkg/acquire-worker.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc
index e2b8bf9e4..d06024178 100644
--- a/apt-pkg/acquire-worker.cc
+++ b/apt-pkg/acquire-worker.cc
@@ -374,9 +374,14 @@ bool pkgAcquire::Worker::MediaChange(string Message)
string Media = LookupTag(Message,"Media");
string Drive = LookupTag(Message,"Drive");
ostringstream msg,status;
+ ioprintf(msg,_("Please insert the disc labeled: "
+ "'%s' "
+ "in the drive '%s' and press enter."),
+ Media.c_str(),Drive.c_str());
status << "media-change: " // message
- << Media << ":" //media
- << Drive //drive
+ << Media << ":" // media
+ << Drive << ":" // drive
+ << msg.str() // l10n message
<< endl;
write(status_fd, status.str().c_str(), status.str().size());
}