aboutsummaryrefslogtreecommitdiff
path: root/src/datetime-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-09-07 12:34:12 -0500
committerTed Gould <ted@gould.cx>2010-09-07 12:34:12 -0500
commit029d2cfd3c57be5c9c0c98ccafda09e92e92afe7 (patch)
tree385fcd26c79fe4737bbbdd2fb862cf1637105ce7 /src/datetime-service.c
parentcc5ecca1e9d029b3ab2853daf4328112a5c32f03 (diff)
parentd0f7670cc5c25a89c734ace8a442278b982c3caa (diff)
downloadayatana-indicator-datetime-029d2cfd3c57be5c9c0c98ccafda09e92e92afe7.tar.gz
ayatana-indicator-datetime-029d2cfd3c57be5c9c0c98ccafda09e92e92afe7.tar.bz2
ayatana-indicator-datetime-029d2cfd3c57be5c9c0c98ccafda09e92e92afe7.zip
Import upstream version 0.0.5
Diffstat (limited to 'src/datetime-service.c')
-rw-r--r--src/datetime-service.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datetime-service.c b/src/datetime-service.c
index 2137065..57dcc5e 100644
--- a/src/datetime-service.c
+++ b/src/datetime-service.c
@@ -141,7 +141,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,
@@ -156,7 +156,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");