From 53dbac6cdff347fc8acc8cdacf7e509ceadd7f5d Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sun, 22 Jan 2017 20:09:24 +0100 Subject: dpkg-deb: Fix capitalization of Debian in output messages Here Debian refers to the distribution and in English this needs to be capitalized. No translation will be unfuzzed, as the capitalization rules change among locales. Warned-by: spellintian --- dpkg-deb/extract.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dpkg-deb') diff --git a/dpkg-deb/extract.c b/dpkg-deb/extract.c index b1d66ee15..ddb8709cd 100644 --- a/dpkg-deb/extract.c +++ b/dpkg-deb/extract.c @@ -146,7 +146,7 @@ extracthalf(const char *debar, const char *dir, char *infobuf; if (strncmp(arh.ar_name, DEBMAGIC, sizeof(arh.ar_name)) != 0) - ohshit(_("file '%.250s' is not a debian binary archive (try dpkg-split?)"), + ohshit(_("file '%.250s' is not a Debian binary archive (try dpkg-split?)"), debar); infobuf= m_malloc(memberlen+1); r = fd_read(ar->fd, infobuf, memberlen + (memberlen & 1)); @@ -221,7 +221,7 @@ extracthalf(const char *debar, const char *dir, } if (admininfo >= 2) { - printf(_(" new debian package, version %d.%d.\n" + printf(_(" new Debian package, version %d.%d.\n" " size %jd bytes: control archive=%jd bytes.\n"), version.major, version.minor, (intmax_t)ar->size, (intmax_t)ctrllennum); @@ -256,7 +256,7 @@ extracthalf(const char *debar, const char *dir, } if (admininfo >= 2) { - printf(_(" old debian package, version %d.%d.\n" + printf(_(" old Debian package, version %d.%d.\n" " size %jd bytes: control archive=%jd, main archive=%jd.\n"), version.major, version.minor, (intmax_t)ar->size, (intmax_t)ctrllennum, @@ -269,7 +269,7 @@ extracthalf(const char *debar, const char *dir, " corrupted by being downloaded in ASCII mode")); } - ohshit(_("'%.255s' is not a debian format archive"), debar); + ohshit(_("'%.255s' is not a Debian format archive"), debar); } m_pipe(p1); -- cgit v1.2.3