From: jbj Date: Thu, 3 Apr 2003 00:07:41 +0000 (+0000) Subject: Gettextify output strftime(3) formats (#83611). X-Git-Tag: rpm-4.4-release~628 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=126654591c74112bffcf98887bd9a0c654856bbd;p=platform%2Fupstream%2Frpm.git Gettextify output strftime(3) formats (#83611). CVS patchset: 6731 CVS date: 2003/04/03 00:07:41 --- diff --git a/rpmdb/header.c b/rpmdb/header.c index 68b88fb..b059a52 100644 --- a/rpmdb/header.c +++ b/rpmdb/header.c @@ -3620,7 +3620,8 @@ static char * dateFormat(int_32 type, hPTR_t data, char * formatPrefix, int padding, int element) /*@modifies formatPrefix @*/ { - return realDateFormat(type, data, formatPrefix, padding, element, "%c"); + return realDateFormat(type, data, formatPrefix, padding, element, + _("%c")); } /** @@ -3636,7 +3637,7 @@ static char * dayFormat(int_32 type, hPTR_t data, /*@modifies formatPrefix @*/ { return realDateFormat(type, data, formatPrefix, padding, element, - "%a %b %d %Y"); + _("%a %b %d %Y")); } /**