From: Benno Schulenberg Date: Mon, 4 Aug 2008 20:11:47 +0000 (+0200) Subject: who: Gettextize two forgotten strings X-Git-Tag: v7.0~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7e2f425e7bd8818c69a08bb1f24fb8afa8cfea6;p=thirdparty%2Fcoreutils.git who: Gettextize two forgotten strings --- diff --git a/src/who.c b/src/who.c index 0bba912751..94af8bfec1 100644 --- a/src/who.c +++ b/src/who.c @@ -427,7 +427,7 @@ print_user (const STRUCT_UTMP *utmp_ent, time_t boottime) static void print_boottime (const STRUCT_UTMP *utmp_ent) { - print_line (-1, "", ' ', -1, "system boot", + print_line (-1, "", ' ', -1, _("system boot"), time_string (utmp_ent), "", "", "", ""); } @@ -472,7 +472,7 @@ print_login (const STRUCT_UTMP *utmp_ent) /* FIXME: add idle time? */ - print_line (-1, "LOGIN", ' ', sizeof utmp_ent->ut_line, utmp_ent->ut_line, + print_line (-1, _("LOGIN"), ' ', sizeof utmp_ent->ut_line, utmp_ent->ut_line, time_string (utmp_ent), "", pidstr, comment, ""); free (comment); }