8d9eac4
diff --git a/src/date.c b/src/date.c
8d9eac4
index ddb011e..619a72b 100644
8d9eac4
--- a/src/date.c
8d9eac4
+++ b/src/date.c
8d9eac4
@@ -490,14 +490,7 @@ main (int argc, char **argv)
c3e4c84
       format = DATE_FMT_LANGINFO ();
c3e4c84
       if (! *format)
2505178
         {
2505178
-          /* Do not wrap the following literal format string with _(...).
98ff9fe
-             For example, suppose LC_ALL is unset, LC_TIME=POSIX,
2505178
-             and LANG="ko_KR".  In that case, POSIX says that LC_TIME
2505178
-             determines the format and contents of date and time strings
2505178
-             written by date, which means "date" must generate output
2505178
-             using the POSIX locale; but adding _() would cause "date"
2505178
-             to use a Korean translation of the format.  */
2505178
-          format = "%a %b %e %H:%M:%S %Z %Y";
2505178
+          format = dcgettext(NULL, N_("%a %b %e %H:%M:%S %Z %Y"), LC_TIME);
2505178
         }
cvsdist de6548f
     }
c3e4c84