From: Sami Kerola Date: Sun, 22 Jan 2012 00:23:10 +0000 (+0100) Subject: skill: exclude debugging strings from nls X-Git-Tag: v3.3.3~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fc80ffa4203f072ff13d36cff71299ba6b147cf;p=procps-ng skill: exclude debugging strings from nls Signed-off-by: Sami Kerola --- diff --git a/skill.c b/skill.c index de3ccb94..5bbf4027 100644 --- 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--)