[dates] For the window title use the full day name and the locale date format



commit cf50a923da79691f2ee931e216a1efc205cc06b7
Author: Ross Burton <ross linux intel com>
Date:   Wed Jul 15 07:55:09 2009 +0100

    For the window title use the full day name and the locale date format

 src/dates_callbacks.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/dates_callbacks.c b/src/dates_callbacks.c
index 76e2354..6a8fce3 100644
--- a/src/dates_callbacks.c
+++ b/src/dates_callbacks.c
@@ -304,9 +304,9 @@ dates_date_changed_cb (DatesView *view, DatesData *d)
 #ifndef WITH_HILDON
     gchar *text;
 #endif
-	
+
     timem = icaltimetype_to_tm ((icaltimetype *)date);
-    strftime (buffer, 255, "%a, %F", &timem);
+    strftime (buffer, 255, "%A, %x", &timem);
 
 #ifdef WITH_HILDON
     gtk_window_set_title (GTK_WINDOW (d->main_window), buffer);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]