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