summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-11-26 17:37:11 +0000
committerRoland McGrath <roland@gnu.org>1995-11-26 17:37:11 +0000
commitcbd3dceb398526fda2fc62674dc873c5c8f5b38d (patch)
tree6fb3253482b342f11beeddd7a880c2898ad1cddc /posix
parentfbaad1494f7fa9e52c391a926d1c3a015604eb58 (diff)
Sat Nov 25 02:48:47 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu>
* assert/assert-perr.c, assert/assert.c, inet/rcmd.c, malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c, resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c, sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c, sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c, sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c, sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c, sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable strings. Sat Nov 25 02:48:47 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu> * assert/assert-perr.c, assert/assert.c, inet/rcmd.c, malloc/mcheck.c, malloc/vm-limit.c, posix/getconf.c, posix/id.c, resolv/herror.c, sunrpc/auth_unix.c, sunrpc/clnt_perr.c, sunrpc/clnt_raw.c, sunrpc/get_myaddr.c, sunrpc/pmap_clnt.c, sunrpc/pmap_rmt.c, sunrpc/portmap.c, sunrpc/rpc_main.c, sunrpc/rpc_parse.c, sunrpc/rpc_scan.c, sunrpc/rpc_util.c, sunrpc/rpcinfo.c, sunrpc/svc_simple.c, sunrpc/svc_tcp.c, sunrpc/svc_udp.c, time/zdump.c, time/zic.c: Mark translatable strings.
Diffstat (limited to 'posix')
-rw-r--r--posix/getconf.c6
-rw-r--r--posix/id.c8
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);
}