diff options
author | Ted Gould <ted@gould.cx> | 2010-09-07 11:36:21 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-09-07 11:36:21 -0500 |
commit | e3cc725830ce59cf09f750c179e91de85496d7f8 (patch) | |
tree | 2052d9ae26f9b44c0f26017a7f4ab882cd3b0fe3 /src/datetime-service.c | |
parent | ad7305f85c811817622a21abd4b8a6bb8d7839fa (diff) | |
parent | ad7356178478d8e190f7b28d982c0f4ba5a11cd5 (diff) | |
download | ayatana-indicator-datetime-e3cc725830ce59cf09f750c179e91de85496d7f8.tar.gz ayatana-indicator-datetime-e3cc725830ce59cf09f750c179e91de85496d7f8.tar.bz2 ayatana-indicator-datetime-e3cc725830ce59cf09f750c179e91de85496d7f8.zip |
Sync to trunk
Diffstat (limited to 'src/datetime-service.c')
-rw-r--r-- | src/datetime-service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datetime-service.c b/src/datetime-service.c index 8c881f7..c197980 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -145,7 +145,7 @@ build_menus (DbusmenuMenuitem * root) if (calendar == NULL) { calendar = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set (calendar, DBUSMENU_MENUITEM_PROP_LABEL, _("Open Calendar")); + dbusmenu_menuitem_property_set (calendar, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CALENDAR_MENUITEM_TYPE); /* insensitive until we check for available apps */ dbusmenu_menuitem_property_set_bool(calendar, DBUSMENU_MENUITEM_PROP_ENABLED, FALSE); g_signal_connect (G_OBJECT(calendar), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, @@ -160,7 +160,7 @@ build_menus (DbusmenuMenuitem * root) dbusmenu_menuitem_child_append(root, separator); settings = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set (settings, DBUSMENU_MENUITEM_PROP_LABEL, _("Set Time and Date...")); + dbusmenu_menuitem_property_set (settings, DBUSMENU_MENUITEM_PROP_LABEL, _("Time & Date Settings...")); /* insensitive until we check for available apps */ dbusmenu_menuitem_property_set_bool(settings, DBUSMENU_MENUITEM_PROP_ENABLED, FALSE); g_signal_connect(G_OBJECT(settings), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(activate_cb), "time-admin"); |