diff options
author | jbj <devnull@localhost> | 2003-04-03 00:07:41 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-04-03 00:07:41 +0000 |
commit | 126654591c74112bffcf98887bd9a0c654856bbd (patch) | |
tree | 638c5a6570da1cc9c24b600c1d014cfa8128a191 | |
parent | 598457907828b062cedc2cff252aeeab7b988fce (diff) | |
download | librpm-tizen-126654591c74112bffcf98887bd9a0c654856bbd.tar.gz librpm-tizen-126654591c74112bffcf98887bd9a0c654856bbd.tar.bz2 librpm-tizen-126654591c74112bffcf98887bd9a0c654856bbd.zip |
Gettextify output strftime(3) formats (#83611).
CVS patchset: 6731
CVS date: 2003/04/03 00:07:41
-rw-r--r-- | rpmdb/header.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rpmdb/header.c b/rpmdb/header.c index 68b88fbad..b059a5263 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")); } /** |