US datified

svn path=/trunk/; revision=12060
This commit is contained in:
Iain Holmes
2001-08-15 18:32:18 +00:00
parent f5740bf33f
commit cd588d1cc7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-08-15 Iain Holmes <iain@ximian.com>
* e-summary.c (e_summary_draw): Use the US format for dates (Yeeech)
2001-08-15 Iain Holmes <iain@ximian.com>
* e-summary.c: s/My Evolution/Summary/

View File

@ -142,7 +142,7 @@ e_summary_draw (ESummary *summary)
string = g_string_new (HTML_1);
t = time (NULL);
strftime (date, 255, _("%A, %d %B %Y"), localtime (&t));
strftime (date, 255, _("%A, %B %e %Y"), localtime (&t));
date_utf = e_utf8_from_locale_string (date);
html = g_strdup_printf (HTML_2, date_utf);