diff options
author | Marcus Tomlinson <marcus.tomlinson@canonical.com> | 2013-10-16 17:34:53 +0200 |
---|---|---|
committer | Marcus Tomlinson <marcus.tomlinson@canonical.com> | 2013-10-16 17:34:53 +0200 |
commit | 32c75bdf48fd0cf14ef76ca338f30edcb6e9b0ac (patch) | |
tree | 02245578f8dc9ba88d13c1229f9976f8d5c53a65 | |
parent | a590af19ae6364df31d20a60b0e5050610521d9b (diff) | |
download | ayatana-indicator-datetime-32c75bdf48fd0cf14ef76ca338f30edcb6e9b0ac.tar.gz ayatana-indicator-datetime-32c75bdf48fd0cf14ef76ca338f30edcb6e9b0ac.tar.bz2 ayatana-indicator-datetime-32c75bdf48fd0cf14ef76ca338f30edcb6e9b0ac.zip |
Fixed date formatted string menu item to display the full name of current day rather than the shortend version.
-rw-r--r-- | src/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.c b/src/service.c index 17a3cb5..4536aa7 100644 --- a/src/service.c +++ b/src/service.c @@ -683,7 +683,7 @@ create_phone_calendar_section (IndicatorDatetimeService * self) GMenu * menu = g_menu_new (); /* strftime(3) format string to show date */ - add_localtime_menuitem (menu, self, _("%a, %e %B %Y"), "calendar"); + add_localtime_menuitem (menu, self, _("%A, %e %B %Y"), "calendar"); return G_MENU_MODEL (menu); } |