diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-08-16 02:32:18 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-08-16 02:32:18 +0800 |
commit | cd588d1cc70367f1935d3148f37cbdc9697c5510 (patch) | |
tree | 84f3ebc672857782f6b6f6b326ce5e0882019061 /my-evolution | |
parent | f5740bf33f5b5ac440ce653c3a3266b7112ccb23 (diff) | |
download | gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar.gz gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar.bz2 gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar.lz gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar.xz gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.tar.zst gsoc2013-evolution-cd588d1cc70367f1935d3148f37cbdc9697c5510.zip |
US datified
svn path=/trunk/; revision=12060
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 4 | ||||
-rw-r--r-- | my-evolution/e-summary.c | 2 |
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); |