diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/getconf.c | 6 | ||||
-rw-r--r-- | posix/id.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/posix/getconf.c b/posix/getconf.c index e42b909ed9..7423a77225 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -61,7 +61,7 @@ static CONST char *program; static void DEFUN_VOID(usage) { - fprintf (stderr, "Usage: %s variable_name [pathname]\n", program); + fprintf (stderr, _("Usage: %s variable_name [pathname]\n"), program); exit (2); } @@ -129,6 +129,6 @@ DEFUN(main, (argc, argv), int argc AND char **argv) } } - fprintf (stderr, "%s: Unrecognized variable `%s'\n", program, argv[1]); + fprintf (stderr, _("%s: Unrecognized variable `%s'\n"), program, argv[1]); exit (2); } diff --git a/posix/id.c b/posix/id.c index d886e68573..b08d2501fa 100644 --- a/posix/id.c +++ b/posix/id.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,7 +37,7 @@ DEFUN(print_grpname, (id, parens), return; else { - fprintf(stderr, "Couldn't find name for group %d\n", id); + fprintf(stderr, _("Couldn't find name for group %d\n"), id); exit(EXIT_FAILURE); } } @@ -59,7 +59,7 @@ DEFUN(print_pwdname, (id, parens), return; else { - fprintf(stderr, "Couldn't find name for user %d\n", (int) id); + fprintf(stderr, _("Couldn't find name for user %d\n"), (int) id); exit(EXIT_FAILURE); } } @@ -109,7 +109,7 @@ DEFUN(main, (argc, argv), int argc AND char **argv) if (error || argc != optind) { - fputs("Usage: id [-gurn]\n", stderr); + fputs(_("Usage: id [-gurn]\n"), stderr); exit(EXIT_FAILURE); } |