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