diff options
author | Milan Crha <mcrha@redhat.com> | 2012-11-22 20:29:51 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-11-22 20:29:51 +0800 |
commit | d7d54dffc8b746548e888e00f1c06eb2ccdc2a53 (patch) | |
tree | c79239d2d0e62718d60ebfe0de3e5a17927b1335 /calendar | |
parent | 5c8be9044726f7b6d6701091839d9e426263a8e2 (diff) | |
download | gsoc2013-evolution-d7d54dffc8b746548e888e00f1c06eb2ccdc2a53.tar.gz gsoc2013-evolution-d7d54dffc8b746548e888e00f1c06eb2ccdc2a53.tar.zst gsoc2013-evolution-d7d54dffc8b746548e888e00f1c06eb2ccdc2a53.zip |
Bug #674678 - Event notification uses wrong app name
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/alarm-notify/alarm-queue.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/alarm-notify/alarm-queue.c b/calendar/alarm-notify/alarm-queue.c index 7fc308f482..f24a17b135 100644 --- a/calendar/alarm-notify/alarm-queue.c +++ b/calendar/alarm-notify/alarm-queue.c @@ -1628,6 +1628,7 @@ display_notification (time_t trigger, /* create the tray icon */ if (tray_icon == NULL) { tray_icon = gtk_status_icon_new (); + gtk_status_icon_set_title (tray_icon, _("Evolution Reminders")); gtk_status_icon_set_from_icon_name ( tray_icon, "appointment-soon"); g_signal_connect ( @@ -1728,7 +1729,7 @@ popup_notification (time_t trigger, if (!qa) return; if (!notify_is_initted ()) - notify_init ("Evolution Alarm Notify"); + notify_init (_("Evolution Reminders")); /* get a sensible description for the event */ e_cal_component_get_summary (comp, &text); @@ -2082,7 +2083,7 @@ alarm_queue_init (gpointer data) g_timeout_add_seconds (60, check_wall_clock_time_changed, NULL); #ifdef HAVE_LIBNOTIFY - notify_init ("Evolution Alarms"); + notify_init (_("Evolution Reminders")); #endif alarm_queue_inited = TRUE; |