c3e4c84
--- coreutils-5.92/src/date.c.langinfo	2005-09-16 09:06:57.000000000 +0100
c3e4c84
+++ coreutils-5.92/src/date.c	2005-10-24 18:09:16.000000000 +0100
c3e4c84
@@ -451,14 +451,7 @@
c3e4c84
       format = DATE_FMT_LANGINFO ();
c3e4c84
       if (! *format)
cvsdist de6548f
 	{
cvsdist de6548f
-	  /* Do not wrap the following literal format string with _(...).
cvsdist de6548f
-	     For example, suppose LC_ALL is unset, LC_TIME="POSIX",
c3e4c84
-	     and LANG="ko_KR".  In that case, POSIX says that LC_TIME
cvsdist de6548f
-	     determines the format and contents of date and time strings
cvsdist de6548f
-	     written by date, which means "date" must generate output
cvsdist de6548f
-	     using the POSIX locale; but adding _() would cause "date"
cvsdist de6548f
-	     to use a Korean translation of the format.  */
c3e4c84
-	  format = "%a %b %e %H:%M:%S %Z %Y";
c3e4c84
+	  format = dcgettext(NULL, N_("%a %b %e %H:%M:%S %Z %Y"), LC_TIME);
cvsdist de6548f
 	}
cvsdist de6548f
     }
c3e4c84