diff options
author | Sami Kerola <kerolasa@iki.fi> | 2012-01-22 01:23:10 +0100 |
---|---|---|
committer | Sami Kerola <kerolasa@iki.fi> | 2012-01-22 01:23:59 +0100 |
commit | 7fc80ffa4203f072ff13d36cff71299ba6b147cf (patch) | |
tree | cecd379208964e6c40e0d611459ca589b954c07b /skill.c | |
parent | 2b9936213963eb2c4c5d02922bbf5eb9ef7e72f6 (diff) | |
download | procps-ng-7fc80ffa4203f072ff13d36cff71299ba6b147cf.tar.gz |
skill: exclude debugging strings from nls
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'skill.c')
-rw-r--r-- | skill.c | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -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--) |