This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

locale _date_fmt support patch


Hi,

These patches support the locale entry of
XPG4's _date_fmt. It's useful to represent
appropriate date(1) format.

Regards,
-- GOTO Masanori

2000-10-26  GOTO Masanori  <gotom@debian.or.jp>

	* locales/categories.def: New support for _date_fmt.
	* locales/langinfo.h: Likewise.
	* locales/programs/ld-time.c: Likewise.
	* locales/programs/locfile-kw.gperf: Likewise.
	* locales/programs/locfile-kw.h: Likewise.
	* locales/programs/locfile-token.h: Likewise.

diff -Nuar locale/categories.def locale.new/categories.def
--- locale/categories.def	Sat Sep  2 04:21:06 2000
+++ locale.new/categories.def	Tue Oct 24 02:19:54 2000
@@ -217,6 +217,7 @@
   DEFINE_ELEMENT (ALT_DIGITS,  "alt_digits",  opt, stringarray,  0, 100)
   DEFINE_ELEMENT (ERA_D_T_FMT, "era_d_t_fmt", opt, string)
   DEFINE_ELEMENT (ERA_T_FMT,   "era_t_fmt",   opt, string)
+  DEFINE_ELEMENT (_DATE_FMT,   "_date_fmt",    opt, string)
   DEFINE_ELEMENT (_NL_TIME_ERA_NUM_ENTRIES,    "time-era-num-entries",    opt, word)
   DEFINE_ELEMENT (_NL_TIME_ERA_ENTRIES,   "time-era-entries", opt, string)
   DEFINE_ELEMENT (_NL_WABDAY_1,  "wide-abday",    std, stringarray,  7,  7)
@@ -233,6 +234,7 @@
   DEFINE_ELEMENT (_NL_WALT_DIGITS,  "wide-alt_digits",  opt, stringarray,  0, 100)
   DEFINE_ELEMENT (_NL_WERA_D_T_FMT, "wide-era_d_t_fmt", opt, string)
   DEFINE_ELEMENT (_NL_WERA_T_FMT,   "wide-era_t_fmt",   opt, string)
+  DEFINE_ELEMENT (_NL_W_DATE_FMT,   "wide-_date_fmt",   opt, string)
   DEFINE_ELEMENT (_NL_TIME_WEEK_NDAYS,      "week-ndays",          std, byte)
   DEFINE_ELEMENT (_NL_TIME_WEEK_1STDAY,     "week-1stday",         std, word)
   DEFINE_ELEMENT (_NL_TIME_WEEK_1STWEEK,    "week-1stweek",        std, byte)
diff -Nuar locale/langinfo.h locale.new/langinfo.h
--- locale/langinfo.h	Wed Sep 27 02:21:05 2000
+++ locale.new/langinfo.h	Tue Oct 24 04:27:40 2000
@@ -157,6 +157,9 @@
   ERA_T_FMT,			/* Time in alternate era format.  */
 #define ERA_T_FMT		ERA_T_FMT
 
+  _DATE_FMT,			/* strftime format for date. (XPG4) */
+#define _DATE_FMT		_DATE_FMT
+
   _NL_TIME_ERA_NUM_ENTRIES,	/* Number entries in the era arrays.  */
   _NL_TIME_ERA_ENTRIES,		/* Structure with era entries in usable form.*/
 
@@ -218,6 +221,8 @@
   _NL_WALT_DIGITS,	/* Alternate symbols for digits.  */
   _NL_WERA_D_T_FMT,	/* Date and time in alternate era format.  */
   _NL_WERA_T_FMT,	/* Time in alternate era format.  */
+
+  _NL_W_DATE_FMT,
 
   _NL_TIME_WEEK_NDAYS,
   _NL_TIME_WEEK_1STDAY,
diff -Nuar locale/programs/ld-time.c locale.new/programs/ld-time.c
--- locale/programs/ld-time.c	Fri Apr 21 12:42:03 2000
+++ locale.new/programs/ld-time.c	Sun Oct 22 05:57:20 2000
@@ -89,6 +89,8 @@
   const uint32_t *wera_d_fmt;
   const char *alt_digits[100];
   const uint32_t *walt_digits[100];
+  const char *_date_fmt;
+  const uint32_t *w_date_fmt;
   int alt_digits_defined;
   unsigned char week_ndays;
   uint32_t week_1stday;
@@ -624,6 +626,12 @@
   ++cnt;
   ++last_idx;
 
+  iov[2 + cnt].iov_base = (void *) (time->_date_fmt ?: "");
+  iov[2 + cnt].iov_len = strlen (iov[2 + cnt].iov_base) + 1;
+  idx[1 + last_idx] = idx[last_idx] + iov[2 + cnt].iov_len;
+  ++cnt;
+  ++last_idx;
+
 
   /* We must align the following data.  */
   iov[2 + cnt].iov_base = (void *) "\0\0";
@@ -805,6 +813,14 @@
   ++cnt;
   ++last_idx;
 
+  iov[2 + cnt].iov_base = (void *) (time->w_date_fmt ?: empty_wstr);
+  iov[2 + cnt].iov_len = ((wcslen (iov[2 + cnt].iov_base) + 1)
+                          * sizeof (uint32_t));
+  idx[1 + last_idx] = idx[last_idx] + iov[2 + cnt].iov_len;
+  ++cnt;
+  ++last_idx;
+
+
   iov[2 + cnt].iov_base = (void *) &time->week_ndays;
   iov[2 + cnt].iov_len = 1;
   idx[1 + last_idx] = idx[last_idx] + iov[2 + cnt].iov_len;
@@ -1079,6 +1095,7 @@
 	  STR_ELEM (era_d_t_fmt);
 	  STR_ELEM (era_d_fmt);
 	  STR_ELEM (era_t_fmt);
+	  STR_ELEM (_date_fmt);
 	  STR_ELEM (timezone);
 
 #define INT_ELEM(cat) \
diff -Nuar locale/programs/locfile-kw.gperf locale.new/programs/locfile-kw.gperf
--- locale/programs/locfile-kw.gperf	Mon Jun 26 03:05:38 2000
+++ locale.new/programs/locfile-kw.gperf	Sun Oct 22 05:19:31 2000
@@ -142,6 +142,7 @@
 era_d_fmt,              tok_era_d_fmt,              0
 era_d_t_fmt,            tok_era_d_t_fmt,            0
 era_t_fmt,              tok_era_t_fmt,              0
+_date_fmt,		 tok__date_fmt,		     0
 alt_digits,             tok_alt_digits,             0
 first_weekday,          tok_first_weekday,          0
 first_workday,          tok_first_workday,          0
diff -Nuar locale/programs/locfile-kw.h locale.new/programs/locfile-kw.h
--- locale/programs/locfile-kw.h	Mon Jun 26 03:06:11 2000
+++ locale.new/programs/locfile-kw.h	Sun Oct 22 06:43:29 2000
@@ -24,12 +24,12 @@
 #include "locfile-token.h"
 struct keyword_t ;
 
-#define TOTAL_KEYWORDS 174
+#define TOTAL_KEYWORDS 175
 #define MIN_WORD_LENGTH 3
 #define MAX_WORD_LENGTH 22
 #define MIN_HASH_VALUE 3
-#define MAX_HASH_VALUE 539
-/* maximum key range = 537, duplicates = 0 */
+#define MAX_HASH_VALUE 700
+/* maximum key range = 698, duplicates = 0 */
 
 #ifdef __GNUC__
 __inline
@@ -39,32 +39,32 @@
 {
   static const unsigned short asso_values[] =
     {
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-        5,   0, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540,  25, 540,   0,   0,   0,
-       15,   0,   0,   0, 540, 540,   0, 540,   0,   0,
-      540, 540,  15,   0,  10,   5, 540, 540, 540,   0,
-      540, 540, 540, 540, 540,  50, 540,   0,  20, 120,
-        5,   0, 110,  15, 105,  90, 540,  15,  75, 150,
-       70,  65,  15,   0,   5,  50,   0, 230,  10,   5,
-        5,   5,   0, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
-      540, 540, 540, 540, 540, 540
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+       10,   0, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701,  20, 701,   0,   0,   0,
+        5,   0,   0,   0, 701, 701,   0, 701,   0,   5,
+      701, 701,   0,   0,   0,  20, 701, 701, 701,   5,
+      701, 701, 701, 701, 701, 190, 701,   0,  25,  80,
+        5,   0, 160,  45,  20,  55, 701,   0,  85,  90,
+      170,  15,   5,   5,  15,  10,   0, 205,   0,   0,
+        5,   5,   5, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701, 701, 701, 701, 701,
+      701, 701, 701, 701, 701, 701
     };
   register int hval = len;
 
@@ -99,298 +99,312 @@
     {
       {""}, {""}, {""},
       {"END",                    tok_end,                    0},
-      {""}, {""}, {""},
+      {"week",                   tok_week,                   0},
+      {""},
+      {"IGNORE",                 tok_ignore,                 0},
       {"LC_TIME",                tok_lc_time,                0},
-      {"era",                    tok_era,                    0},
+      {"LC_CTYPE",               tok_lc_ctype,               0},
       {"date",                   tok_date,                   0},
       {"LC_ADDRESS",             tok_lc_address,             0},
       {"LC_MESSAGES",            tok_lc_messages,            0},
       {"LC_TELEPHONE",           tok_lc_telephone,           0},
       {"day",                    tok_day,                    0},
+      {"LC_MEASUREMENT",         tok_lc_measurement,         0},
+      {"LC_COLLATE",             tok_lc_collate,             0},
+      {""},
+      {"LC_IDENTIFICATION",      tok_lc_identification,      0},
+      {"era",                    tok_era,                    0},
+      {""},
+      {"space",                  tok_space,                  0},
+      {""},
+      {"address",                tok_address,                0},
+      {""},
       {"era_t_fmt",              tok_era_t_fmt,              0},
-      {"LC_NUMERIC",             tok_lc_numeric,             0},
+      {"print",                  tok_print,                  0},
       {"yesstr",                 tok_yesstr,                 0},
-      {"LC_IDENTIFICATION",      tok_lc_identification,      0},
-      {"LC_CTYPE",               tok_lc_ctype,               0},
+      {"LC_NAME",                tok_lc_name,                0},
+      {"LC_PAPER",               tok_lc_paper,               0},
       {"era_d_fmt",              tok_era_d_fmt,              0},
-      {"LC_COLLATE",             tok_lc_collate,             0},
-      {"IGNORE",                 tok_ignore,                 0},
+      {"LC_NUMERIC",             tok_lc_numeric,             0},
+      {""},
       {"yesexpr",                tok_yesexpr,                0},
-      {"era_year",               tok_era_year,               0},
-      {"week",                   tok_week,                   0},
-      {"print",                  tok_print,                  0},
-      {"reorder-end",            tok_reorder_end,            0},
       {""},
-      {"reorder-after",          tok_reorder_after,          0},
       {"UNDEFINED",              tok_undefined,              0},
-      {""}, {""},
-      {"LC_NAME",                tok_lc_name,                0},
-      {""}, {""},
-      {"abday",                  tok_abday,                  0},
-      {"LC_MONETARY",            tok_lc_monetary,            0},
       {""},
+      {"reorder-end",            tok_reorder_end,            0},
+      {"tolower",                tok_tolower,                0},
       {"backward",               tok_backward,               0},
-      {"LC_MEASUREMENT",         tok_lc_measurement,         0},
-      {""}, {""}, {""},
-      {"repertoiremap",          tok_repertoiremap,          0},
-      {""}, {""}, {""}, {""},
-      {"LC_PAPER",               tok_lc_paper,               0},
-      {""}, {""}, {""}, {""}, {""}, {""},
-      {"t_fmt",                  tok_t_fmt,                  0},
+      {""},
+      {"abday",                  tok_abday,                  0},
+      {"LC_MONETARY",            tok_lc_monetary,            0},
+      {"toupper",                tok_toupper,                0},
+      {"era_year",               tok_era_year,               0},
       {""}, {""},
-      {"grouping",               tok_grouping,               0},
+      {"height",                 tok_height,                 0},
       {""},
-      {"d_fmt",                  tok_d_fmt,                  0},
+      {"reorder-after",          tok_reorder_after,          0},
+      {""}, {""}, {""}, {""},
+      {"symbol-equivalence",     tok_symbol_equivalence,     0},
       {""},
-      {"address",                tok_address,                0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"space",                  tok_space,                  0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"tel",                    tok_tel,                    0},
-      {"else",                   tok_else,                   0},
-      {"alpha",                  tok_alpha,                  0},
-      {"define",                 tok_define,                 0},
-      {"tolower",                tok_tolower,                0},
-      {""}, {""},
       {"reorder-sections-end",   tok_reorder_sections_end,   0},
       {"order_start",            tok_order_start,            0},
-      {"reorder-sections-after", tok_reorder_sections_after, 0},
-      {""}, {""}, {""}, {""},
-      {"toupper",                tok_toupper,                0},
       {""},
-      {"order_end",              tok_order_end,              0},
+      {"thousands_sep",          tok_thousands_sep,          0},
+      {""},
       {"title",                  tok_title,                  0},
-      {""}, {""},
-      {"timezone",               tok_timezone,               0},
+      {"escape_char",            tok_escape_char,            0},
       {""},
+      {"repertoiremap",          tok_repertoiremap,          0},
+      {"order_end",              tok_order_end,              0},
       {"digit",                  tok_digit,                  0},
       {""},
-      {"abbreviation",           tok_abbreviation,           0},
-      {""}, {""}, {""},
+      {"reorder-sections-after", tok_reorder_sections_after, 0},
+      {"timezone",               tok_timezone,               0},
+      {""}, {""},
       {"xdigit",                 tok_xdigit,                 0},
       {""}, {""},
       {"territory",              tok_territory,              0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"fax",                    tok_fax,                    0},
-      {"translit_start",         tok_translit_start,         0},
-      {"translit_ignore",        tok_translit_ignore,        0},
-      {""},
-      {"translit_end",           tok_translit_end,           0},
-      {""}, {""}, {""},
-      {"tel_dom_fmt",            tok_tel_dom_fmt,            0},
-      {""},
-      {"name_fmt",               tok_name_fmt,               0},
-      {""},
-      {"blank",                  tok_blank,                  0},
-      {"era_d_t_fmt",            tok_era_d_t_fmt,            0},
-      {"name_mr",                tok_name_mr,                0},
-      {"revision",               tok_revision,               0},
-      {"lang_name",              tok_lang_name,              0},
-      {""}, {""}, {""},
-      {"symbol-equivalence",     tok_symbol_equivalence,     0},
-      {""},
-      {"alt_digits",             tok_alt_digits,             0},
-      {""}, {""}, {""},
-      {"p_sep_by_space",         tok_p_sep_by_space,         0},
-      {""}, {""}, {""},
-      {"category",               tok_category,               0},
-      {""},
-      {"nostr",                  tok_nostr,                  0},
-      {""},
-      {"lang_ab",                tok_lang_ab,                0},
-      {"lang_lib",               tok_lang_lib,               0},
-      {""},
-      {"lower",                  tok_lower,                  0},
-      {""}, {""},
-      {"position",               tok_position,               0},
-      {""}, {""},
-      {"noexpr",                 tok_noexpr,                 0},
-      {""}, {""}, {""},
-      {"abmon",                  tok_abmon,                  0},
-      {""}, {""},
-      {"map",                    tok_map,                    0},
-      {""}, {""}, {""},
-      {"d_t_fmt",                tok_d_t_fmt,                0},
-      {""}, {""}, {""}, {""},
-      {"name_ms",                tok_name_ms,                0},
-      {"name_mrs",               tok_name_mrs,               0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {""}, {""}, {""}, {""},
-      {"decimal_point",          tok_decimal_point,          0},
-      {""}, {""},
-      {"escape_char",            tok_escape_char,            0},
-      {"forward",                tok_forward,                0},
-      {""},
-      {"elif",                   tok_elif,                   0},
+      {"tel",                    tok_tel,                    0},
+      {"else",                   tok_else,                   0},
+      {"alpha",                  tok_alpha,                  0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"map",                    tok_map,                    0},
       {""},
+      {"width",                  tok_width,                  0},
       {"script",                 tok_script,                 0},
       {"contact",                tok_contact,                0},
       {""},
       {"copy",                   tok_copy,                   0},
-      {""},
+      {"graph",                  tok_graph,                  0},
       {"country_ab3",            tok_country_ab3,            0},
+      {""}, {""}, {""},
+      {"alt_digits",             tok_alt_digits,             0},
+      {"source",                 tok_source,                 0},
+      {"country_post",           tok_country_post,           0},
+      {"decimal_point",          tok_decimal_point,          0},
       {""},
-      {"name_gen",               tok_name_gen,               0},
-      {"n_sep_by_space",         tok_n_sep_by_space,         0},
-      {""},
+      {"blank",                  tok_blank,                  0},
       {"country_ab2",            tok_country_ab2,            0},
       {""},
-      {"negative_sign",          tok_negative_sign,          0},
+      {"grouping",               tok_grouping,               0},
+      {""},
+      {"postal_fmt",             tok_postal_fmt,             0},
       {""}, {""}, {""}, {""},
-      {"int_p_sep_by_space",     tok_int_p_sep_by_space,     0},
-      {""}, {""},
-      {"tel_int_fmt",            tok_tel_int_fmt,            0},
-      {"country_post",           tok_country_post,           0},
-      {"positive_sign",          tok_positive_sign,          0},
-      {""}, {""},
-      {"height",                 tok_height,                 0},
+      {"conversion_rate",        tok_conversion_rate,        0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"lower",                  tok_lower,                  0},
+      {""},
+      {"mon_thousands_sep",      tok_mon_thousands_sep,      0},
+      {"category",               tok_category,               0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {"collating-element",      tok_collating_element,      0},
-      {"first_weekday",          tok_first_weekday,          0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""},
+      {"fax",                    tok_fax,                    0},
+      {""}, {""}, {""}, {""}, {""},
+      {"section-symbol",         tok_section_symbol,         0},
+      {""},
+      {"tel_dom_fmt",            tok_tel_dom_fmt,            0},
       {""}, {""}, {""}, {""},
-      {"first_workday",          tok_first_workday,          0},
+      {"define",                 tok_define,                 0},
+      {""}, {""}, {""}, {""}, {""},
+      {"forward",                tok_forward,                0},
+      {"charconv",               tok_charconv,               0},
       {""},
-      {"t_fmt_ampm",             tok_t_fmt_ampm,             0},
-      {"p_sign_posn",            tok_p_sign_posn,            0},
-      {""}, {""},
-      {"name_miss",              tok_name_miss,              0},
+      {"class",                  tok_class,                  0},
+      {"era_d_t_fmt",            tok_era_d_t_fmt,            0},
       {""}, {""}, {""},
-      {"thousands_sep",          tok_thousands_sep,          0},
-      {""},
-      {"graph",                  tok_graph,                  0},
+      {"t_fmt",                  tok_t_fmt,                  0},
       {""}, {""},
-      {"audience",               tok_audience,               0},
+      {"position",               tok_position,               0},
       {""},
-      {"postal_fmt",             tok_postal_fmt,             0},
-      {"source",                 tok_source,                 0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"punct",                  tok_punct,                  0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"upper",                  tok_upper,                  0},
+      {"d_fmt",                  tok_d_fmt,                  0},
+      {"country_car",            tok_country_car,            0},
+      {"comment_char",           tok_comment_char,           0},
+      {"revision",               tok_revision,               0},
+      {"_date_fmt",		tok__date_fmt,		    0},
       {""}, {""},
-      {"int_n_sep_by_space",     tok_int_n_sep_by_space,     0},
+      {"abbreviation",           tok_abbreviation,           0},
       {""},
-      {"conversion_rate",        tok_conversion_rate,        0},
+      {"charclass",              tok_charclass,              0},
       {""},
-      {"country_name",           tok_country_name,           0},
+      {"noexpr",                 tok_noexpr,                 0},
+      {"mon_grouping",           tok_mon_grouping,           0},
+      {"audience",               tok_audience,               0},
       {""},
-      {"from",                   tok_from,                   0},
-      {"coll_weight_max",        tok_coll_weight_max,        0},
+      {"punct",                  tok_punct,                  0},
       {""},
-      {"mon_grouping",           tok_mon_grouping,           0},
+      {"mon_decimal_point",      tok_mon_decimal_point,      0},
       {""}, {""},
-      {"int_p_sign_posn",        tok_int_p_sign_posn,        0},
-      {"application",            tok_application,            0},
+      {"nostr",                  tok_nostr,                  0},
+      {""}, {""}, {""}, {""}, {""},
+      {"tel_int_fmt",            tok_tel_int_fmt,            0},
       {""}, {""},
-      {"section-symbol",         tok_section_symbol,         0},
-      {"int_prefix",             tok_int_prefix,             0},
-      {"n_sign_posn",            tok_n_sign_posn,            0},
+      {"translit_start",         tok_translit_start,         0},
+      {"translit_ignore",        tok_translit_ignore,        0},
       {""},
-      {"duo_p_sep_by_space",     tok_duo_p_sep_by_space,     0},
+      {"translit_end",           tok_translit_end,           0},
+      {"first_weekday",          tok_first_weekday,          0},
       {""}, {""}, {""}, {""},
-      {"mon",                    tok_mon,                    0},
+      {"duo_p_sep_by_space",     tok_duo_p_sep_by_space,     0},
       {""}, {""},
       {"collating-symbol",       tok_collating_symbol,       0},
-      {"int_p_cs_precedes",      tok_int_p_cs_precedes,      0},
+      {"duo_valid_to",           tok_duo_valid_to,           0},
       {""}, {""},
-      {"endif",                  tok_endif,                  0},
-      {""},
-      {"mon_thousands_sep",      tok_mon_thousands_sep,      0},
-      {"p_cs_precedes",          tok_p_cs_precedes,          0},
-      {""},
-      {"class",                  tok_class,                  0},
-      {""}, {""}, {""}, {""},
-      {"email",                  tok_email,                  0},
-      {""}, {""}, {""}, {""},
-      {"width",                  tok_width,                  0},
+      {"upper",                  tok_upper,                  0},
       {""}, {""},
-      {"language",               tok_language,               0},
+      {"first_workday",          tok_first_workday,          0},
+      {"elif",                   tok_elif,                   0},
+      {""}, {""}, {""},
+      {"int_p_sep_by_space",     tok_int_p_sep_by_space,     0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {""}, {""},
-      {"frac_digits",            tok_frac_digits,            0},
-      {""}, {""}, {""}, {""},
-      {"country_car",            tok_country_car,            0},
-      {"comment_char",           tok_comment_char,           0},
+      {"email",                  tok_email,                  0},
+      {""}, {""}, {""},
+      {"from",                   tok_from,                   0},
+      {"alnum",                  tok_alnum,                  0},
       {""}, {""}, {""}, {""},
-      {"duo_valid_to",           tok_duo_valid_to,           0},
-      {"cal_direction",          tok_cal_direction,          0},
+      {"am_pm",                  tok_am_pm,                  0},
       {""},
-      {"int_n_sign_posn",        tok_int_n_sign_posn,        0},
+      {"country_name",           tok_country_name,           0},
+      {"mon",                    tok_mon,                    0},
+      {""}, {""}, {""}, {""},
+      {"outdigit",               tok_outdigit,               0},
+      {"lang_name",              tok_lang_name,              0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"duo_n_sep_by_space",     tok_duo_n_sep_by_space,     0},
+      {"duo_int_p_sep_by_space", tok_duo_int_p_sep_by_space, 0},
+      {""}, {""},
+      {"t_fmt_ampm",             tok_t_fmt_ampm,             0},
+      {"application",            tok_application,            0},
       {""},
-      {"int_select",             tok_int_select,             0},
+      {"language",               tok_language,               0},
+      {""},
+      {"int_prefix",             tok_int_prefix,             0},
+      {"duo_int_p_cs_precedes",  tok_duo_int_p_cs_precedes,  0},
       {""}, {""}, {""}, {""},
-      {"cntrl",                  tok_cntrl,                  0},
+      {"measurement",            tok_measurement,            0},
+      {"lang_ab",                tok_lang_ab,                0},
+      {"lang_lib",               tok_lang_lib,               0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {""},
-      {"int_n_cs_precedes",      tok_int_n_cs_precedes,      0},
-      {""}, {""},
-      {"duo_p_sign_posn",        tok_duo_p_sign_posn,        0},
-      {""}, {""},
-      {"n_cs_precedes",          tok_n_cs_precedes,          0},
-      {""}, {""}, {""},
+      {"duo_valid_from",         tok_duo_valid_from,         0},
+      {""}, {""}, {""}, {""}, {""},
+      {"int_select",             tok_int_select,             0},
+      {""}, {""}, {""}, {""}, {""}, {""},
       {"country_isbn",           tok_country_isbn,           0},
-      {""}, {""}, {""}, {""},
-      {"duo_int_p_sep_by_space", tok_duo_int_p_sep_by_space, 0},
-      {"charconv",               tok_charconv,               0},
-      {""}, {""}, {""},
-      {"duo_p_cs_precedes",      tok_duo_p_cs_precedes,      0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"cal_direction",          tok_cal_direction,          0},
+      {""},
+      {"coll_weight_max",        tok_coll_weight_max,        0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"default_missing",        tok_default_missing,        0},
+      {""},
+      {"d_t_fmt",                tok_d_t_fmt,                0},
       {""}, {""}, {""},
-      {"alnum",                  tok_alnum,                  0},
-      {""}, {""}, {""}, {""},
-      {"int_frac_digits",        tok_int_frac_digits,        0},
+      {"country_num",            tok_country_num,            0},
       {""},
-      {"mon_decimal_point",      tok_mon_decimal_point,      0},
+      {"name_fmt",               tok_name_fmt,               0},
+      {""},
+      {"abmon",                  tok_abmon,                  0},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"name_ms",                tok_name_ms,                0},
+      {"name_mrs",               tok_name_mrs,               0},
       {""}, {""}, {""},
-      {"measurement",            tok_measurement,            0},
+      {"name_mr",                tok_name_mr,                0},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"name_miss",              tok_name_miss,              0},
+      {""}, {""}, {""},
+      {"positive_sign",          tok_positive_sign,          0},
+      {"duo_currency_symbol",    tok_duo_currency_symbol,    0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"duo_n_sep_by_space",     tok_duo_n_sep_by_space,     0},
+      {"p_sep_by_space",         tok_p_sep_by_space,         0},
+      {""}, {""},
       {"uno_valid_to",           tok_uno_valid_to,           0},
-      {"outdigit",               tok_outdigit,               0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""},
+      {"int_n_sep_by_space",     tok_int_n_sep_by_space,     0},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"cntrl",                  tok_cntrl,                  0},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"duo_p_cs_precedes",      tok_duo_p_cs_precedes,      0},
       {""}, {""}, {""},
+      {"p_sign_posn",            tok_p_sign_posn,            0},
       {"include",                tok_include,                0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {"duo_n_sign_posn",        tok_duo_n_sign_posn,        0},
-      {""}, {""}, {""}, {""}, {""},
-      {"duo_int_p_cs_precedes",  tok_duo_int_p_cs_precedes,  0},
+      {""}, {""}, {""},
+      {"frac_digits",            tok_frac_digits,            0},
+      {""}, {""}, {""},
+      {"duo_p_sign_posn",        tok_duo_p_sign_posn,        0},
+      {""},
+      {"int_p_cs_precedes",      tok_int_p_cs_precedes,      0},
+      {""},
+      {"duo_int_curr_symbol",    tok_duo_int_curr_symbol,    0},
+      {""}, {""}, {""}, {""},
+      {"duo_int_frac_digits",    tok_duo_int_frac_digits,    0},
       {""}, {""},
-      {"duo_valid_from",         tok_duo_valid_from,         0},
-      {"default_missing",        tok_default_missing,        0},
-      {"country_num",            tok_country_num,            0},
       {"duo_int_n_sep_by_space", tok_duo_int_n_sep_by_space, 0},
-      {""}, {""},
-      {"int_curr_symbol",        tok_int_curr_symbol,        0},
       {""},
-      {"duo_n_cs_precedes",      tok_duo_n_cs_precedes,      0},
-      {""}, {""},
-      {"ifdef",                  tok_ifdef,                  0},
-      {""}, {""}, {""},
       {"duo_int_p_sign_posn",    tok_duo_int_p_sign_posn,    0},
-      {""}, {""}, {""}, {""},
+      {"int_p_sign_posn",        tok_int_p_sign_posn,        0},
+      {""}, {""}, {""},
       {"lang_term",              tok_lang_term,              0},
-      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {""}, {""}, {""}, {""}, {""},
-      {"duo_currency_symbol",    tok_duo_currency_symbol,    0},
-      {""}, {""}, {""}, {""},
-      {"charclass",              tok_charclass,              0},
-      {"am_pm",                  tok_am_pm,                  0},
-      {""}, {""}, {""}, {""},
-      {"duo_frac_digits",        tok_duo_frac_digits,        0},
-      {""}, {""}, {""}, {""}, {""},
+      {""},
       {"duo_int_n_cs_precedes",  tok_duo_int_n_cs_precedes,  0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {"uno_valid_from",         tok_uno_valid_from,         0},
-      {""}, {""}, {""}, {""},
-      {"duo_int_n_sign_posn",    tok_duo_int_n_sign_posn,    0},
+      {""}, {""}, {""},
+      {"p_cs_precedes",          tok_p_cs_precedes,          0},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"endif",                  tok_endif,                  0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""},
+      {"name_gen",               tok_name_gen,               0},
+      {""},
+      {"ifdef",                  tok_ifdef,                  0},
+      {""}, {""},
+      {"negative_sign",          tok_negative_sign,          0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"n_sep_by_space",         tok_n_sep_by_space,         0},
       {""}, {""}, {""}, {""}, {""},
       {"currency_symbol",        tok_currency_symbol,        0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {""}, {""}, {""}, {""},
-      {"duo_int_frac_digits",    tok_duo_int_frac_digits,    0},
+      {"duo_frac_digits",        tok_duo_frac_digits,        0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"int_curr_symbol",        tok_int_curr_symbol,        0},
+      {""},
+      {"duo_n_cs_precedes",      tok_duo_n_cs_precedes,      0},
+      {""}, {""},
+      {"int_frac_digits",        tok_int_frac_digits,        0},
+      {"n_sign_posn",            tok_n_sign_posn,            0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"duo_n_sign_posn",        tok_duo_n_sign_posn,        0},
+      {""},
+      {"int_n_cs_precedes",      tok_int_n_cs_precedes,      0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
       {""}, {""},
-      {"undef",                  tok_undef,                  0},
+      {"duo_int_n_sign_posn",    tok_duo_int_n_sign_posn,    0},
+      {"int_n_sign_posn",        tok_int_n_sign_posn,        0},
       {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
-      {""}, {""}, {""}, {""},
-      {"duo_int_curr_symbol",    tok_duo_int_curr_symbol,    0}
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {"n_cs_precedes",          tok_n_cs_precedes,          0},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
+      {""},
+      {"undef",                  tok_undef,                  0}
     };
 
   if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
diff -Nuar locale/programs/locfile-token.h locale.new/programs/locfile-token.h
--- locale/programs/locfile-token.h	Mon Jun 26 03:07:22 2000
+++ locale.new/programs/locfile-token.h	Sun Oct 22 05:19:18 2000
@@ -180,6 +180,7 @@
   tok_era_d_fmt,
   tok_era_d_t_fmt,
   tok_era_t_fmt,
+  tok__date_fmt,
   tok_alt_digits,
   tok_week,
   tok_first_weekday,

2000-10-26  GOTO Masanori  <gotom@debian.or.jp>

	* locales/POSIX: New support for _date_fmt.
	* locales/af_ZA: Likewise.
	* locales/ar_AE: Likewise.
	* locales/ar_BH: Likewise.
	* locales/ar_DZ: Likewise.
	* locales/ar_EG: Likewise.
	* locales/ar_IQ: Likewise.
	* locales/ar_JO: Likewise.
	* locales/ar_KW: Likewise.
	* locales/ar_LB: Likewise.
	* locales/ar_LY: Likewise.
	* locales/ar_MA: Likewise.
	* locales/ar_OM: Likewise.
	* locales/ar_QA: Likewise.
	* locales/ar_SA: Likewise.
	* locales/ar_SD: Likewise.
	* locales/ar_SY: Likewise.
	* locales/ar_TN: Likewise.
	* locales/ar_YE: Likewise.
	* locales/be_BY: Likewise.
	* locales/bg_BG: Likewise.
	* locales/ca_ES: Likewise.
	* locales/cs_CZ: Likewise.
	* locales/da_DK: Likewise.
	* locales/de_AT: Likewise.
	* locales/de_BE: Likewise.
	* locales/de_CH: Likewise.
	* locales/de_DE: Likewise.
	* locales/de_LU: Likewise.
	* locales/el_GR: Likewise.
	* locales/en_AU: Likewise.
	* locales/en_CA: Likewise.
	* locales/en_DK: Likewise.
	* locales/en_GB: Likewise.
	* locales/en_IE: Likewise.
	* locales/en_NZ: Likewise.
	* locales/en_US: Likewise.
	* locales/en_ZA: Likewise.
	* locales/es_AR: Likewise.
	* locales/es_BO: Likewise.
	* locales/es_CL: Likewise.
	* locales/es_CO: Likewise.
	* locales/es_CR: Likewise.
	* locales/es_DO: Likewise.
	* locales/es_EC: Likewise.
	* locales/es_ES: Likewise.
	* locales/es_GT: Likewise.
	* locales/es_HN: Likewise.
	* locales/es_MX: Likewise.
	* locales/es_NI: Likewise.
	* locales/es_PA: Likewise.
	* locales/es_PE: Likewise.
	* locales/es_PR: Likewise.
	* locales/es_PY: Likewise.
	* locales/es_SV: Likewise.
	* locales/es_US: Likewise.
	* locales/es_UY: Likewise.
	* locales/es_VE: Likewise.
	* locales/et_EE: Likewise.
	* locales/eu_ES: Likewise.
	* locales/fa_IR: Likewise.
	* locales/fi_FI: Likewise.
	* locales/fo_FO: Likewise.
	* locales/fr_BE: Likewise.
	* locales/fr_CA: Likewise.
	* locales/fr_CH: Likewise.
	* locales/fr_FR: Likewise.
	* locales/fr_LU: Likewise.
	* locales/ga_IE: Likewise.
	* locales/gl_ES: Likewise.
	* locales/gv_GB: Likewise.
	* locales/he_IL: Likewise.
	* locales/hi_IN: Likewise.
	* locales/hr_HR: Likewise.
	* locales/hu_HU: Likewise.
	* locales/i18n: Likewise.
	* locales/id_ID: Likewise.
	* locales/is_IS: Likewise.
	* locales/it_CH: Likewise.
	* locales/it_IT: Likewise.
	* locales/iw_IL: Likewise.
	* locales/ja_JP: Likewise.
	* locales/kl_GL: Likewise.
	* locales/ko_KR: Likewise.
	* locales/kw_GB: Likewise.
	* locales/lt_LT: Likewise.
	* locales/lv_LV: Likewise.
	* locales/mk_MK: Likewise.
	* locales/mr_IN: Likewise.
	* locales/mt_MT: Likewise.
	* locales/nl_BE: Likewise.
	* locales/nl_NL: Likewise.
	* locales/nn_NO: Likewise.
	* locales/no_NO: Likewise.
	* locales/pl_PL: Likewise.
	* locales/pt_BR: Likewise.
	* locales/pt_PT: Likewise.
	* locales/ro_RO: Likewise.
	* locales/ru_RU: Likewise.
	* locales/ru_UA: Likewise.
	* locales/sk_SK: Likewise.
	* locales/sl_SI: Likewise.
	* locales/sq_AL: Likewise.
	* locales/sr_YU: Likewise.
	* locales/sv_FI: Likewise.
	* locales/sv_SE: Likewise.
	* locales/th_TH: Likewise.
	* locales/tr_TR: Likewise.
	* locales/uk_UA: Likewise.
	* locales/vi_VN: Likewise.
	* locales/zh_CN: Likewise.
	* locales/zh_HK: Likewise.
	* locales/zh_TW: Likewise.

diff -Nuar localedata/locales/POSIX localedata.new/locales/POSIX
--- localedata/locales/POSIX	Sat Jul  8 08:56:57 2000
+++ localedata.new/locales/POSIX	Tue Oct 24 05:01:26 2000
@@ -317,6 +317,8 @@
 t_fmt_ampm "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053>\
 <U0020><U0025><U0070>"
 #
+# Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/af_ZA localedata.new/locales/af_ZA
--- localedata/locales/af_ZA	Fri Jul  7 08:28:08 2000
+++ localedata.new/locales/af_ZA	Tue Oct 24 05:02:42 2000
@@ -2221,6 +2221,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "<U0056><U004D>";"<U004E><U004D>"
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/ar_AE localedata.new/locales/ar_AE
--- localedata/locales/ar_AE	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_AE	Tue Oct 24 05:03:26 2000
@@ -137,6 +137,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_BH localedata.new/locales/ar_BH
--- localedata/locales/ar_BH	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_BH	Tue Oct 24 05:03:40 2000
@@ -141,6 +141,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_DZ localedata.new/locales/ar_DZ
--- localedata/locales/ar_DZ	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_DZ	Tue Oct 24 05:03:52 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_EG localedata.new/locales/ar_EG
--- localedata/locales/ar_EG	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_EG	Tue Oct 24 05:04:01 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_IQ localedata.new/locales/ar_IQ
--- localedata/locales/ar_IQ	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_IQ	Tue Oct 24 05:04:21 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_JO localedata.new/locales/ar_JO
--- localedata/locales/ar_JO	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_JO	Tue Oct 24 05:04:36 2000
@@ -158,6 +158,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_KW localedata.new/locales/ar_KW
--- localedata/locales/ar_KW	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_KW	Tue Oct 24 05:04:44 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_LB localedata.new/locales/ar_LB
--- localedata/locales/ar_LB	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_LB	Tue Oct 24 05:04:50 2000
@@ -157,6 +157,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_LY localedata.new/locales/ar_LY
--- localedata/locales/ar_LY	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_LY	Tue Oct 24 05:05:00 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_MA localedata.new/locales/ar_MA
--- localedata/locales/ar_MA	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_MA	Tue Oct 24 05:05:05 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_OM localedata.new/locales/ar_OM
--- localedata/locales/ar_OM	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_OM	Tue Oct 24 05:10:15 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_QA localedata.new/locales/ar_QA
--- localedata/locales/ar_QA	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_QA	Tue Oct 24 05:05:59 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_SA localedata.new/locales/ar_SA
--- localedata/locales/ar_SA	Sat Sep 30 07:01:02 2000
+++ localedata.new/locales/ar_SA	Tue Oct 24 05:05:36 2000
@@ -535,6 +535,7 @@
 	"<U0044><U0065><U0063>"
 am_pm	"";""
 era_d_fmt	""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_SD localedata.new/locales/ar_SD
--- localedata/locales/ar_SD	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_SD	Tue Oct 24 05:06:04 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_SY localedata.new/locales/ar_SY
--- localedata/locales/ar_SY	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_SY	Tue Oct 24 05:06:08 2000
@@ -157,6 +157,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_TN localedata.new/locales/ar_TN
--- localedata/locales/ar_TN	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_TN	Tue Oct 24 05:06:12 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/ar_YE localedata.new/locales/ar_YE
--- localedata/locales/ar_YE	Thu Sep 14 03:54:59 2000
+++ localedata.new/locales/ar_YE	Tue Oct 24 05:06:17 2000
@@ -140,6 +140,8 @@
 t_fmt_ampm  "<U0025><U005A><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053><U0020><U0025><U0070>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/be_BY localedata.new/locales/be_BY
--- localedata/locales/be_BY	Fri Jul  7 08:28:08 2000
+++ localedata.new/locales/be_BY	Tue Oct 24 05:06:28 2000
@@ -3108,6 +3108,7 @@
 t_fmt     "<U0025><U0054>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/bg_BG localedata.new/locales/bg_BG
--- localedata/locales/bg_BG	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/bg_BG	Tue Oct 24 05:06:35 2000
@@ -3131,6 +3131,7 @@
 t_fmt     "<U0025><U0048><U003A><U0025><U004D>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/ca_ES localedata.new/locales/ca_ES
--- localedata/locales/ca_ES	Wed Aug 23 13:02:36 2000
+++ localedata.new/locales/ca_ES	Tue Oct 24 05:06:40 2000
@@ -2178,6 +2178,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/cs_CZ localedata.new/locales/cs_CZ
--- localedata/locales/cs_CZ	Thu Jul  6 07:29:37 2000
+++ localedata.new/locales/cs_CZ	Tue Oct 24 05:07:34 2000
@@ -2446,6 +2446,8 @@
 
 am_pm   	"";""
 
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
+
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/da_DK localedata.new/locales/da_DK
--- localedata/locales/da_DK	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/da_DK	Tue Oct 24 05:07:39 2000
@@ -2196,6 +2196,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/de_AT localedata.new/locales/de_AT
--- localedata/locales/de_AT	Thu Jun 29 08:37:45 2000
+++ localedata.new/locales/de_AT	Tue Oct 24 05:07:43 2000
@@ -120,6 +120,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/de_BE localedata.new/locales/de_BE
--- localedata/locales/de_BE	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/de_BE	Tue Oct 24 05:07:53 2000
@@ -116,6 +116,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/de_CH localedata.new/locales/de_CH
--- localedata/locales/de_CH	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/de_CH	Tue Oct 24 05:08:17 2000
@@ -116,6 +116,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/de_DE localedata.new/locales/de_DE
--- localedata/locales/de_DE	Tue Jul 25 08:24:41 2000
+++ localedata.new/locales/de_DE	Tue Oct 24 05:08:21 2000
@@ -110,6 +110,7 @@
 %	"%T"
 t_fmt   "<U0025><U0054>"
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/de_LU localedata.new/locales/de_LU
--- localedata/locales/de_LU	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/de_LU	Tue Oct 24 05:08:32 2000
@@ -116,6 +116,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/el_GR localedata.new/locales/el_GR
--- localedata/locales/el_GR	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/el_GR	Tue Oct 24 05:08:42 2000
@@ -3144,6 +3144,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/en_AU localedata.new/locales/en_AU
--- localedata/locales/en_AU	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_AU	Tue Oct 24 05:08:47 2000
@@ -113,6 +113,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_CA localedata.new/locales/en_CA
--- localedata/locales/en_CA	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_CA	Tue Oct 24 05:08:56 2000
@@ -2176,6 +2176,7 @@
 t_fmt       "<U0025><U0072>"
 am_pm       "<U0041><U004D>";"<U0050><U004D>"
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U0070>"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_DK localedata.new/locales/en_DK
--- localedata/locales/en_DK	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_DK	Tue Oct 24 05:09:01 2000
@@ -119,6 +119,7 @@
 t_fmt    "<U0025><U0054>"
 am_pm    "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_GB localedata.new/locales/en_GB
--- localedata/locales/en_GB	Mon Sep 25 04:01:42 2000
+++ localedata.new/locales/en_GB	Tue Oct 24 05:09:06 2000
@@ -114,6 +114,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_IE localedata.new/locales/en_IE
--- localedata/locales/en_IE	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_IE	Tue Oct 24 05:09:11 2000
@@ -115,6 +115,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_NZ localedata.new/locales/en_NZ
--- localedata/locales/en_NZ	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_NZ	Tue Oct 24 05:09:22 2000
@@ -113,6 +113,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_US localedata.new/locales/en_US
--- localedata/locales/en_US	Mon Jun 26 09:30:38 2000
+++ localedata.new/locales/en_US	Tue Oct 24 05:21:06 2000
@@ -119,6 +119,9 @@
 % Strings for AM/PM
 %
 am_pm	"<U0041><U004D>";"<U0050><U004D>"
+%
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/en_ZA localedata.new/locales/en_ZA
--- localedata/locales/en_ZA	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/en_ZA	Tue Oct 24 05:09:41 2000
@@ -110,6 +110,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/es_AR localedata.new/locales/es_AR
--- localedata/locales/es_AR	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_AR	Tue Oct 24 05:09:50 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_BO localedata.new/locales/es_BO
--- localedata/locales/es_BO	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_BO	Tue Oct 24 05:09:56 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_CL localedata.new/locales/es_CL
--- localedata/locales/es_CL	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_CL	Tue Oct 24 05:10:40 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_CO localedata.new/locales/es_CO
--- localedata/locales/es_CO	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_CO	Tue Oct 24 05:10:46 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_CR localedata.new/locales/es_CR
--- localedata/locales/es_CR	Tue Aug 22 13:25:24 2000
+++ localedata.new/locales/es_CR	Tue Oct 24 05:10:52 2000
@@ -110,6 +110,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_DO localedata.new/locales/es_DO
--- localedata/locales/es_DO	Wed Aug 23 11:59:33 2000
+++ localedata.new/locales/es_DO	Tue Oct 24 05:11:00 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_EC localedata.new/locales/es_EC
--- localedata/locales/es_EC	Tue Aug 22 12:49:07 2000
+++ localedata.new/locales/es_EC	Tue Oct 24 05:11:05 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_ES localedata.new/locales/es_ES
--- localedata/locales/es_ES	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/es_ES	Tue Oct 24 05:11:09 2000
@@ -2180,6 +2180,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_GT localedata.new/locales/es_GT
--- localedata/locales/es_GT	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_GT	Tue Oct 24 05:11:21 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_HN localedata.new/locales/es_HN
--- localedata/locales/es_HN	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_HN	Tue Oct 24 05:11:25 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_MX localedata.new/locales/es_MX
--- localedata/locales/es_MX	Wed Aug 23 12:46:39 2000
+++ localedata.new/locales/es_MX	Tue Oct 24 05:11:30 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_NI localedata.new/locales/es_NI
--- localedata/locales/es_NI	Tue Aug 22 13:25:39 2000
+++ localedata.new/locales/es_NI	Tue Oct 24 05:11:34 2000
@@ -110,6 +110,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_PA localedata.new/locales/es_PA
--- localedata/locales/es_PA	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_PA	Tue Oct 24 05:11:39 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_PE localedata.new/locales/es_PE
--- localedata/locales/es_PE	Wed Aug 23 12:46:19 2000
+++ localedata.new/locales/es_PE	Tue Oct 24 05:11:43 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_PR localedata.new/locales/es_PR
--- localedata/locales/es_PR	Tue Aug 22 13:25:58 2000
+++ localedata.new/locales/es_PR	Tue Oct 24 05:11:47 2000
@@ -110,6 +110,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_PY localedata.new/locales/es_PY
--- localedata/locales/es_PY	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_PY	Tue Oct 24 05:11:51 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_SV localedata.new/locales/es_SV
--- localedata/locales/es_SV	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_SV	Tue Oct 24 05:11:56 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_US localedata.new/locales/es_US
--- localedata/locales/es_US	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/es_US	Tue Oct 24 05:12:00 2000
@@ -2194,6 +2194,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_UY localedata.new/locales/es_UY
--- localedata/locales/es_UY	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_UY	Tue Oct 24 05:12:04 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/es_VE localedata.new/locales/es_VE
--- localedata/locales/es_VE	Tue Aug 22 12:48:56 2000
+++ localedata.new/locales/es_VE	Tue Oct 24 05:12:08 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/et_EE localedata.new/locales/et_EE
--- localedata/locales/et_EE	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/et_EE	Tue Oct 24 05:12:13 2000
@@ -2189,6 +2189,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm    ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/eu_ES localedata.new/locales/eu_ES
--- localedata/locales/eu_ES	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/eu_ES	Tue Oct 24 05:12:20 2000
@@ -125,6 +125,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt	"<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/fa_IR localedata.new/locales/fa_IR
--- localedata/locales/fa_IR	Wed Aug 23 11:58:02 2000
+++ localedata.new/locales/fa_IR	Tue Oct 24 05:16:40 2000
@@ -525,6 +525,7 @@
 %
 t_fmt_ampm "<U0025><U0053><:f><U0025><U004D><:f><U0025><U0049><SP+><U0025><U0070>"
 %
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
  
 % <U0628> for <U0628><U0644><U0647>, <U0622> for <U33C2><U0631><yf>,
diff -Nuar localedata/locales/fi_FI localedata.new/locales/fi_FI
--- localedata/locales/fi_FI	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fi_FI	Tue Oct 24 05:16:54 2000
@@ -2184,6 +2184,7 @@
 t_fmt    "<U0025><U0054>"
 am_pm    "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/fo_FO localedata.new/locales/fo_FO
--- localedata/locales/fo_FO	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fo_FO	Tue Oct 24 05:17:51 2000
@@ -100,6 +100,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/fr_BE localedata.new/locales/fr_BE
--- localedata/locales/fr_BE	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fr_BE	Tue Oct 24 05:18:00 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/fr_CA localedata.new/locales/fr_CA
--- localedata/locales/fr_CA	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fr_CA	Tue Oct 24 05:18:34 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/fr_CH localedata.new/locales/fr_CH
--- localedata/locales/fr_CH	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fr_CH	Tue Oct 24 05:18:41 2000
@@ -104,6 +104,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/fr_FR localedata.new/locales/fr_FR
--- localedata/locales/fr_FR	Fri Jun 30 04:07:28 2000
+++ localedata.new/locales/fr_FR	Tue Oct 24 05:18:46 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/fr_LU localedata.new/locales/fr_LU
--- localedata/locales/fr_LU	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/fr_LU	Tue Oct 24 05:19:03 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/ga_IE localedata.new/locales/ga_IE
--- localedata/locales/ga_IE	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/ga_IE	Tue Oct 24 05:19:16 2000
@@ -111,6 +111,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/gl_ES localedata.new/locales/gl_ES
--- localedata/locales/gl_ES	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/gl_ES	Tue Oct 24 05:19:29 2000
@@ -119,6 +119,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/gv_GB localedata.new/locales/gv_GB
--- localedata/locales/gv_GB	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/gv_GB	Tue Oct 24 05:19:46 2000
@@ -124,6 +124,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/he_IL localedata.new/locales/he_IL
--- localedata/locales/he_IL	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/he_IL	Tue Oct 24 05:19:51 2000
@@ -112,6 +112,7 @@
 t_fmt   "<U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053>"
 am_pm   "<U0041><U004D>";"<U0050><U004D>"
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U0050>"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/hi_IN localedata.new/locales/hi_IN
--- localedata/locales/hi_IN	Tue Aug 22 17:30:54 2000
+++ localedata.new/locales/hi_IN	Tue Oct 24 05:19:57 2000
@@ -149,6 +149,7 @@
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053>/
 <U0020><U0025><U0070><U0020><U0025><U005A>"
 %
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/hr_HR localedata.new/locales/hr_HR
--- localedata/locales/hr_HR	Mon Jul 24 09:10:49 2000
+++ localedata.new/locales/hr_HR	Tue Oct 24 05:20:02 2000
@@ -2205,6 +2205,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/hu_HU localedata.new/locales/hu_HU
--- localedata/locales/hu_HU	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/hu_HU	Tue Oct 24 05:20:07 2000
@@ -2282,6 +2282,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/i18n localedata.new/locales/i18n
--- localedata/locales/i18n	Thu Oct  5 10:54:19 2000
+++ localedata.new/locales/i18n	Tue Oct 24 05:21:15 2000
@@ -1558,6 +1558,8 @@
 t_fmt   "<U0025><U0054>"
 t_fmt_ampm ""
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/id_ID localedata.new/locales/id_ID
--- localedata/locales/id_ID	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/id_ID	Tue Oct 24 05:21:24 2000
@@ -113,6 +113,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/is_IS localedata.new/locales/is_IS
--- localedata/locales/is_IS	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/is_IS	Tue Oct 24 05:21:29 2000
@@ -2219,6 +2219,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "<U0066><U0068>";"<U0065><U0068>"
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/it_CH localedata.new/locales/it_CH
--- localedata/locales/it_CH	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/it_CH	Tue Oct 24 05:21:37 2000
@@ -97,6 +97,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/it_IT localedata.new/locales/it_IT
--- localedata/locales/it_IT	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/it_IT	Tue Oct 24 05:21:43 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/iw_IL localedata.new/locales/iw_IL
--- localedata/locales/iw_IL	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/iw_IL	Tue Oct 24 05:21:59 2000
@@ -112,6 +112,7 @@
 t_fmt   "<U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053>"
 am_pm   "<U0041><U004D>";"<U0050><U004D>"
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U0050>"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/ja_JP localedata.new/locales/ja_JP
--- localedata/locales/ja_JP	Thu Oct  5 11:52:29 2000
+++ localedata.new/locales/ja_JP	Tue Oct 24 05:44:00 2000
@@ -18639,6 +18578,9 @@
 era_d_fmt	"<U0025><U0045><U0059><U0025><U006d><U6708><U0025><U0064><U65E5>"
 
 era_d_t_fmt	"<U0025><U0045><U0059><U0025><U006D><U6708><U0025><U0064><U65E5><U0020><U0025><U0048><U6642><U0025><U004D><U5206><U0025><U0053><U79D2>"
+
+% "%Y<NEN> %b %e<NICHI> %A %H:%M:%S %Z"
+_date_fmt	"<U0025><U0059><U5E74><U0020><U0025><U0062><U0020><U0025><U0065><U65E5><U0020><U0025><U0041><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A>"
 
 alt_digits	"<U3007>";"<U4E00>";"<U4E8C>";"<U4E09>";"<U56DB>";"<U4E94>";/
 		"<U516D>";"<U4E03>";"<U516B>";"<U4E5D>";"<U5341>";/
diff -Nuar localedata/locales/kl_GL localedata.new/locales/kl_GL
--- localedata/locales/kl_GL	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/kl_GL	Tue Oct 24 05:22:12 2000
@@ -101,6 +101,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/ko_KR localedata.new/locales/ko_KR
--- localedata/locales/ko_KR	Thu Oct  5 08:50:15 2000
+++ localedata.new/locales/ko_KR	Tue Oct 24 05:22:20 2000
@@ -11187,6 +11187,8 @@
 am_pm	"<UC624><UC804>";"<UC624><UD6C4>"
 t_fmt_ampm "<U0025><U0070><U0025><U0049><UC2DC><U0020><U0025><U004D><UBD84><U0025><U0053><UCD08>"
 
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
+
 END LC_TIME
 
 % NOTES on LC_MESSAGES
diff -Nuar localedata/locales/kw_GB localedata.new/locales/kw_GB
--- localedata/locales/kw_GB	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/kw_GB	Tue Oct 24 05:22:27 2000
@@ -116,6 +116,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/lt_LT localedata.new/locales/lt_LT
--- localedata/locales/lt_LT	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/lt_LT	Tue Oct 24 05:22:33 2000
@@ -2184,6 +2184,7 @@
 t_fmt     "<U0025><U0054>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/lv_LV localedata.new/locales/lv_LV
--- localedata/locales/lv_LV	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/lv_LV	Tue Oct 24 05:22:40 2000
@@ -2177,6 +2177,7 @@
 t_fmt    "<U0025><U0054>"
 am_pm    "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/mk_MK localedata.new/locales/mk_MK
--- localedata/locales/mk_MK	Fri Jul  7 08:28:09 2000
+++ localedata.new/locales/mk_MK	Tue Oct 24 05:22:46 2000
@@ -3052,6 +3052,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MONETARY
diff -Nuar localedata/locales/mr_IN localedata.new/locales/mr_IN
--- localedata/locales/mr_IN	Wed Sep 13 11:06:27 2000
+++ localedata.new/locales/mr_IN	Tue Oct 24 05:23:28 2000
@@ -153,6 +153,8 @@
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053>/
 <U0020><U0025><U0070><U0020><U0025><U005A>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/mt_MT localedata.new/locales/mt_MT
--- localedata/locales/mt_MT	Wed Sep 13 11:06:11 2000
+++ localedata.new/locales/mt_MT	Tue Oct 24 05:23:42 2000
@@ -147,6 +147,8 @@
 t_fmt_ampm  "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053>/
 <U0020><U0025><U0070><U0020><U0025><U005A>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/nl_BE localedata.new/locales/nl_BE
--- localedata/locales/nl_BE	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/nl_BE	Tue Oct 24 05:23:48 2000
@@ -101,6 +101,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/nl_NL localedata.new/locales/nl_NL
--- localedata/locales/nl_NL	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/nl_NL	Tue Oct 24 05:24:00 2000
@@ -117,6 +117,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/nn_NO localedata.new/locales/nn_NO
--- localedata/locales/nn_NO	Fri Sep  1 03:31:27 2000
+++ localedata.new/locales/nn_NO	Tue Oct 24 05:24:14 2000
@@ -140,6 +140,8 @@
 % Appropriate 12 h time representation (%r)
 t_fmt_ampm  ""
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/no_NO localedata.new/locales/no_NO
--- localedata/locales/no_NO	Thu Jul  6 07:29:38 2000
+++ localedata.new/locales/no_NO	Tue Oct 24 05:24:19 2000
@@ -2185,6 +2185,7 @@
 t_fmt       "<U0025><U0054>"
 am_pm       "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/pl_PL localedata.new/locales/pl_PL
--- localedata/locales/pl_PL	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/pl_PL	Tue Oct 24 05:24:24 2000
@@ -2180,6 +2180,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/pt_BR localedata.new/locales/pt_BR
--- localedata/locales/pt_BR	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/pt_BR	Tue Oct 24 05:24:29 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/pt_PT localedata.new/locales/pt_PT
--- localedata/locales/pt_PT	Thu Jul  6 07:29:38 2000
+++ localedata.new/locales/pt_PT	Tue Oct 24 05:24:33 2000
@@ -118,6 +118,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/ro_RO localedata.new/locales/ro_RO
--- localedata/locales/ro_RO	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/ro_RO	Tue Oct 24 05:24:46 2000
@@ -2178,6 +2178,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/ru_RU localedata.new/locales/ru_RU
--- localedata/locales/ru_RU	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/ru_RU	Tue Oct 24 05:24:52 2000
@@ -3113,6 +3113,7 @@
 t_fmt     "<U0025><U0054>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/ru_UA localedata.new/locales/ru_UA
--- localedata/locales/ru_UA	Tue Sep 26 13:52:54 2000
+++ localedata.new/locales/ru_UA	Tue Oct 24 05:25:01 2000
@@ -3108,6 +3108,7 @@
 t_fmt     "<U0025><U0054>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/sk_SK localedata.new/locales/sk_SK
--- localedata/locales/sk_SK	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/sk_SK	Tue Oct 24 05:25:11 2000
@@ -175,6 +175,8 @@
 
 am_pm   	"";""
 
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
+
 END LC_TIME
 
 %% END OF LOCALIZATION FILE for sk_SK.ISO-8859-2
diff -Nuar localedata/locales/sl_SI localedata.new/locales/sl_SI
--- localedata/locales/sl_SI	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/sl_SI	Tue Oct 24 05:25:16 2000
@@ -2180,6 +2180,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/sq_AL localedata.new/locales/sq_AL
--- localedata/locales/sq_AL	Tue Aug 22 18:05:09 2000
+++ localedata.new/locales/sq_AL	Tue Oct 24 05:25:28 2000
@@ -141,6 +141,8 @@
 t_fmt_ampm  "<U0025><U0049><U002E><U0025><U004D><U002E><U0025><U0053>/
 <U002E><U0025><U0070><U0020><U0025><U005A>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/sr_YU localedata.new/locales/sr_YU
--- localedata/locales/sr_YU	Mon Jul 24 09:09:07 2000
+++ localedata.new/locales/sr_YU	Tue Oct 24 05:25:33 2000
@@ -2205,6 +2205,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/sv_FI localedata.new/locales/sv_FI
--- localedata/locales/sv_FI	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/sv_FI	Tue Oct 24 05:25:38 2000
@@ -102,6 +102,7 @@
 t_fmt     "<U0025><U0048><U002E><U0025><U004D><U002E><U0025><U0053>"
 am_pm     "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/sv_SE localedata.new/locales/sv_SE
--- localedata/locales/sv_SE	Tue Aug 29 13:57:23 2000
+++ localedata.new/locales/sv_SE	Tue Oct 24 05:25:50 2000
@@ -170,6 +170,7 @@
 t_fmt     "<U0025><U0048><U002E><U0025><U004D><U002E><U0025><U0053>"
 am_pm     "";""
 t_fmt_ampm  ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/th_TH localedata.new/locales/th_TH
--- localedata/locales/th_TH	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/th_TH	Tue Oct 24 05:26:00 2000
@@ -1020,7 +1020,8 @@
 %era_d_fmt       "%d<U0020>%b<U0020>%o"
 %era_t_fmt       "%H<U003A>%M<U003A>%S<U0020><U0E19><U002E>"
 %era_d_t_fmt     "<U0E27><U0E31><U0E19>%A<U0E17><U0E35><U0E48><U0020>%d<U0020>%B<U0020>%N<U0020>%o<U002C><U0020>%H<U003A>%M<U003A>%S<U0020><U0E19><U002E>"
-
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/tr_TR localedata.new/locales/tr_TR
--- localedata/locales/tr_TR	Fri Jul  7 08:28:10 2000
+++ localedata.new/locales/tr_TR	Tue Oct 24 05:26:07 2000
@@ -3098,6 +3098,7 @@
 t_fmt   "<U0025><U0054>"
 am_pm   "<U00D6><U00D6>";"<U00D6><U0053>"
 t_fmt_ampm "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U0070>"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/uk_UA localedata.new/locales/uk_UA
--- localedata/locales/uk_UA	Tue Sep 26 13:53:37 2000
+++ localedata.new/locales/uk_UA	Tue Oct 24 05:26:12 2000
@@ -3108,6 +3108,7 @@
 t_fmt     "<U0025><U0054>"
 am_pm     "";""
 t_fmt_ampm ""
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_PAPER
diff -Nuar localedata/locales/vi_VN localedata.new/locales/vi_VN
--- localedata/locales/vi_VN	Tue Aug 22 17:49:15 2000
+++ localedata.new/locales/vi_VN	Tue Oct 24 05:26:24 2000
@@ -157,6 +157,8 @@
 % Appropriate 12 h time representation (%r)
 t_fmt_ampm  ""
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/zh_CN localedata.new/locales/zh_CN
--- localedata/locales/zh_CN	Thu Oct  5 11:00:54 2000
+++ localedata.new/locales/zh_CN	Tue Oct 24 05:26:29 2000
@@ -437,6 +437,7 @@
 
 t_fmt_ampm "<U0025><U0070><U0020><U0025><U0049><U65F6><U0025><U004D><U5206><U0025><U0053><U79D2>"
 
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 LC_MESSAGES
diff -Nuar localedata/locales/zh_HK localedata.new/locales/zh_HK
--- localedata/locales/zh_HK	Sat Sep  2 13:43:26 2000
+++ localedata.new/locales/zh_HK	Tue Oct 24 05:26:42 2000
@@ -133,6 +133,8 @@
 t_fmt_ampm  "<U0025><U0070><U0020><U0025><U0049><U003A><U0025><U004D>/
 <U003A><U0025><U0053>"
 %
+% Appropriate date representation (date(1))   "%a %b %e %H:%M:%S %Z %Y"
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
 END LC_TIME
 
 
diff -Nuar localedata/locales/zh_TW localedata.new/locales/zh_TW
--- localedata/locales/zh_TW	Thu Aug  3 16:26:41 2000
+++ localedata.new/locales/zh_TW	Tue Oct 24 05:26:55 2000
@@ -123,6 +123,9 @@
 % t_fmt_ampm: "%p %I<h>%M<m>%S<s>"
 t_fmt_ampm  "<U0025><U0070><U0020><U0025><U0049><U6642>/
 <U0025><U004D><U5206><U0025><U0053><U79D2>"
+
+_date_fmt       "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>"
+
 END LC_TIME
 
 LC_MESSAGES

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]