From ba2b68b8f38555986c10eb57e9425ccca19199de Mon Sep 17 00:00:00 2001 From: Marcus Tomlinson Date: Wed, 16 Oct 2013 15:45:25 +0200 Subject: Fixed datetime title text to read "Date and Time" rather than the day of the week (as per spec). --- src/service.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/service.c b/src/service.c index a82e310..0b6a138 100644 --- a/src/service.c +++ b/src/service.c @@ -522,7 +522,7 @@ create_phone_header_state (IndicatorDatetimeService * self) gchar * label; gboolean has_alarms; gchar * a11y; - gchar * title; + const gchar * title = _("Date and Time"); g_variant_builder_init (&b, G_VARIANT_TYPE_VARDICT); @@ -550,10 +550,7 @@ create_phone_header_state (IndicatorDatetimeService * self) g_variant_builder_add (&b, "{sv}", "visible", g_variant_new_boolean (TRUE)); g_variant_builder_add (&b, "{sv}", "label", g_variant_new_take_string (label)); - - /* title is day-of-week */ - title = g_date_time_format (now, _("%A")); - g_variant_builder_add (&b, "{sv}", "title", g_variant_new_take_string (title)); + g_variant_builder_add (&b, "{sv}", "title", g_variant_new_string (title)); /* cleanup */ g_date_time_unref (now); -- cgit v1.2.3