Package: util-linux
Version: 2.14~rc2-0
Severity: minor
Tags: patch l10n

While translating util-linux, i've found several strings without gettext
calls, in the misc-utils module.

Patch included. Forwarded to upstream.


diff --git a/misc-utils/logger.c b/misc-utils/logger.c
index 9a7cb05..72a8f85 100644
--- a/misc-utils/logger.c
+++ b/misc-utils/logger.c
@@ -64,7 +64,7 @@ myopenlog(const char *sock) {
        static struct sockaddr_un s_addr; /* AF_UNIX address of local logger */
 
        if (strlen(sock) >= sizeof(s_addr.sun_path)) {
-	       printf ("logger: openlog: pathname too long\n");
+	       printf (_("logger: openlog: pathname too long\n"));
 	       exit(1);
        }
 
@@ -72,12 +72,12 @@ myopenlog(const char *sock) {
        (void)strcpy(s_addr.sun_path, sock);
 
        if ((fd = socket(AF_UNIX, optd ? SOCK_DGRAM : SOCK_STREAM, 0)) == -1) {
-               printf ("socket: %s.\n", strerror(errno));
+               printf (_("socket: %s.\n"), strerror(errno));
                exit (1);
        }
 
        if (connect(fd, (struct sockaddr *) &s_addr, sizeof(s_addr)) == -1) {
-               printf ("connect: %s.\n", strerror(errno));
+               printf (_("connect: %s.\n"), strerror(errno));
                exit (1);
        }
        return fd;

Reply via email to