diff options
author | Ted Gould <ted@gould.cx> | 2011-08-17 14:30:53 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-08-17 14:30:53 -0500 |
commit | 1ade3ddcac2ab93e9391c7942fee22974ca739a9 (patch) | |
tree | 5686e8c48ddc0e9702e4543c73fae07d9375ff88 /src | |
parent | 535f3a157ed42ea19e74f1f2ed194500b29b150e (diff) | |
parent | c287dc427bdb1bed0e2a71b46ca21318f7f9e11c (diff) | |
download | ayatana-indicator-datetime-1ade3ddcac2ab93e9391c7942fee22974ca739a9.tar.gz ayatana-indicator-datetime-1ade3ddcac2ab93e9391c7942fee22974ca739a9.tar.bz2 ayatana-indicator-datetime-1ade3ddcac2ab93e9391c7942fee22974ca739a9.zip |
Fixing ellipsis to be true ellipsis
Diffstat (limited to 'src')
-rw-r--r-- | src/datetime-service.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datetime-service.c b/src/datetime-service.c index 8d25b3c..c1f1eb6 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -492,7 +492,7 @@ check_for_calendar (gpointer user_data) dbusmenu_menuitem_property_set(events_separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR); dbusmenu_menuitem_child_add_position(root, events_separator, 2); add_appointment = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set (add_appointment, DBUSMENU_MENUITEM_PROP_LABEL, _("Add Event...")); + dbusmenu_menuitem_property_set (add_appointment, DBUSMENU_MENUITEM_PROP_LABEL, _("Add Event…")); dbusmenu_menuitem_property_set_bool(add_appointment, DBUSMENU_MENUITEM_PROP_ENABLED, TRUE); g_signal_connect(G_OBJECT(add_appointment), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(activate_cb), "evolution -c calendar"); dbusmenu_menuitem_child_add_position (root, add_appointment, 3); @@ -1064,7 +1064,7 @@ build_menus (DbusmenuMenuitem * root) g_debug("Building Menus."); if (date == NULL) { date = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set (date, DBUSMENU_MENUITEM_PROP_LABEL, _("No date yet...")); + dbusmenu_menuitem_property_set (date, DBUSMENU_MENUITEM_PROP_LABEL, _("No date yet…")); dbusmenu_menuitem_property_set_bool(date, DBUSMENU_MENUITEM_PROP_ENABLED, FALSE); dbusmenu_menuitem_child_append(root, date); @@ -1116,7 +1116,7 @@ build_menus (DbusmenuMenuitem * root) dbusmenu_menuitem_child_append(root, separator); settings = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set (settings, DBUSMENU_MENUITEM_PROP_LABEL, _("Time & Date Settings...")); + 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), "gnome-control-center indicator-datetime"); |