summaryrefslogtreecommitdiff
path: root/apt-pkg/cdrom.cc
diff options
context:
space:
mode:
authorChristian Perrier <bubulle@debian.org>2005-03-06 17:54:58 +0000
committerChristian Perrier <bubulle@debian.org>2005-03-06 17:54:58 +0000
commitdb0db9feabf17156f1f4e10d0131d18dfb593b4e (patch)
treed9ec4fb344879e0b990546ecc5242e605262bb29 /apt-pkg/cdrom.cc
parenta7c82edc8ff6a051ffcae5a4000085aae04bad24 (diff)
Bring consistency to the use of capitals in programs messages
Diffstat (limited to 'apt-pkg/cdrom.cc')
-rw-r--r--apt-pkg/cdrom.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/cdrom.cc b/apt-pkg/cdrom.cc
index 1b9e98519..ca74aa685 100644
--- a/apt-pkg/cdrom.cc
+++ b/apt-pkg/cdrom.cc
@@ -535,7 +535,7 @@ bool pkgCdrom::Ident(string &ident, pkgCdromStatus *log)
}
if(log) {
msg.str("");
- ioprintf(msg, _("Stored Label: %s \n"),
+ ioprintf(msg, _("Stored label: %s \n"),
Database.Find("CD::"+ident).c_str());
log->Update(msg.str());
}
@@ -603,7 +603,7 @@ bool pkgCdrom::Add(pkgCdromStatus *log)
log->Update("["+ID+"]\n");
if(log)
- log->Update(_("Scanning Disc for index files..\n"),STEP_SCAN);
+ log->Update(_("Scanning disc for index files..\n"),STEP_SCAN);
// Get the CD structure
vector<string> List;
@@ -714,7 +714,7 @@ bool pkgCdrom::Add(pkgCdromStatus *log)
Database.Set("CD::" + ID,Name);
if(log) {
msg.str("");
- ioprintf(msg, _("This Disc is called: \n'%s'\n"), Name.c_str());
+ ioprintf(msg, _("This disc is called: \n'%s'\n"), Name.c_str());
log->Update(msg.str());
}
@@ -751,7 +751,7 @@ bool pkgCdrom::Add(pkgCdromStatus *log)
// Print the sourcelist entries
if(log)
- log->Update(_("Source List entries for this Disc are:\n"));
+ log->Update(_("Source list entries for this disc are:\n"));
for (vector<string>::iterator I = List.begin(); I != List.end(); I++)
{