aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog4
-rw-r--r--my-evolution/e-summary.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index daef38524c..0f7af6e894 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,5 +1,9 @@
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/
* e-summary-preferences.c: s/My Evolution/Summary/
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index 23818019f7..1ea6534d1b 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -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);