aboutsummaryrefslogtreecommitdiffstats
path: root/src/id.c
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@justemail.net>2008-08-09 23:01:12 +0200
committerJim Meyering <meyering@redhat.com>2008-08-12 20:41:25 +0200
commit4290abda87f87cc473838a218e78a0f38c07a2b8 (patch)
tree4755edd5e78b078656aa5496bcd85003999857f6 /src/id.c
parentfmt: remove the 'no file' sentence; the standard phrase is given below (diff)
downloadcoreutils-4290abda87f87cc473838a218e78a0f38c07a2b8.tar.gz
coreutils-4290abda87f87cc473838a218e78a0f38c07a2b8.zip
id: gettextize a few missed tiny strings
Diffstat (limited to 'src/id.c')
-rw-r--r--src/id.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/id.c b/src/id.c
index 14b558d65..5b80e7a24 100644
--- a/src/id.c
+++ b/src/id.c
@@ -270,19 +270,19 @@ print_full_info (const char *username)
struct passwd *pwd;
struct group *grp;
- printf ("uid=%lu", (unsigned long int) ruid);
+ printf (_("uid=%lu"), (unsigned long int) ruid);
pwd = getpwuid (ruid);
if (pwd)
printf ("(%s)", pwd->pw_name);
- printf (" gid=%lu", (unsigned long int) rgid);
+ printf (_(" gid=%lu"), (unsigned long int) rgid);
grp = getgrgid (rgid);
if (grp)
printf ("(%s)", grp->gr_name);
if (euid != ruid)
{
- printf (" euid=%lu", (unsigned long int) euid);
+ printf (_(" euid=%lu"), (unsigned long int) euid);
pwd = getpwuid (euid);
if (pwd)
printf ("(%s)", pwd->pw_name);
@@ -290,7 +290,7 @@ print_full_info (const char *username)
if (egid != rgid)
{
- printf (" egid=%lu", (unsigned long int) egid);
+ printf (_(" egid=%lu"), (unsigned long int) egid);
grp = getgrgid (egid);
if (grp)
printf ("(%s)", grp->gr_name);
@@ -333,5 +333,5 @@ print_full_info (const char *username)
}
#endif /* HAVE_GETGROUPS */
if (context != NULL)
- printf (" context=%s", context);
+ printf (_(" context=%s"), context);
}