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