]> granicus.if.org Git - procps-ng/commitdiff
skill: exclude debugging strings from nls
authorSami Kerola <kerolasa@iki.fi>
Sun, 22 Jan 2012 00:23:10 +0000 (01:23 +0100)
committerSami Kerola <kerolasa@iki.fi>
Sun, 22 Jan 2012 00:23:59 +0000 (01:23 +0100)
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
skill.c

diff --git a/skill.c b/skill.c
index de3ccb94a5b5d1edb7501d26c2bf70621b70547c..5bbf4027a51ed3706e7ad9225154b88be3d6ce4b 100644 (file)
--- a/skill.c
+++ b/skill.c
@@ -187,11 +187,9 @@ static void show_lists(void)
 {
        int i;
 
-       /* Translation Hint: the following few messages to "CMD" are
-        * for debugging, and does not have to be translated. */
-       fprintf(stderr, _("signal: %d\n"), sig_or_pri);
+       fprintf(stderr, "signal: %d\n", sig_or_pri);
 
-       fprintf(stderr, _("%d TTY: "), tty_count);
+       fprintf(stderr, "%d TTY: ", tty_count);
        if (ttys) {
                i = tty_count;
                while (i--) {
@@ -201,7 +199,7 @@ static void show_lists(void)
        } else
                fprintf(stderr, "\n");
 
-       fprintf(stderr, _("%d UID: "), uid_count);
+       fprintf(stderr, "%d UID: ", uid_count);
        if (uids) {
                i = uid_count;
                while (i--)
@@ -209,7 +207,7 @@ static void show_lists(void)
        } else
                fprintf(stderr, "\n");
 
-       fprintf(stderr, _("%d PID: "), pid_count);
+       fprintf(stderr, "%d PID: ", pid_count);
        if (pids) {
                i = pid_count;
                while (i--)
@@ -217,7 +215,7 @@ static void show_lists(void)
        } else
                fprintf(stderr, "\n");
 
-       fprintf(stderr, _("%d CMD: "), cmd_count);
+       fprintf(stderr, "%d CMD: ", cmd_count);
        if (cmds) {
                i = cmd_count;
                while (i--)