diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-09-22 19:09:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-09-22 19:09:02 +0800 |
commit | 4602a56ed0263b4313139d8f02ab98214d2f087a (patch) | |
tree | 714f5851e2ec6498718f6cc963099f058432abd8 | |
parent | 5ae8adfce79f50f6f89df36eb73444490b700b2a (diff) | |
download | gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar.gz gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar.bz2 gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar.lz gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar.xz gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.tar.zst gsoc2013-evolution-4602a56ed0263b4313139d8f02ab98214d2f087a.zip |
Bug 707425 - Inconsistent capitalization in calendar Search menu
-rw-r--r-- | modules/calendar/e-cal-shell-view-actions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/calendar/e-cal-shell-view-actions.c b/modules/calendar/e-cal-shell-view-actions.c index 7d3315b020..835979c50a 100644 --- a/modules/calendar/e-cal-shell-view-actions.c +++ b/modules/calendar/e-cal-shell-view-actions.c @@ -1425,21 +1425,21 @@ static GtkActionEntry calendar_entries[] = { { "calendar-search-next", GTK_STOCK_GO_FORWARD, - N_("Find _next"), + N_("Find _Next"), "<Control><Shift>n", N_("Find next occurrence of the current search string"), G_CALLBACK (action_calendar_search_next_cb) }, { "calendar-search-prev", GTK_STOCK_GO_BACK, - N_("Find _previous"), + N_("Find _Previous"), "<Control><Shift>p", N_("Find previous occurrence of the current search string"), G_CALLBACK (action_calendar_search_prev_cb) }, { "calendar-search-stop", GTK_STOCK_STOP, - N_("Stop _running search"), + N_("Stop _Running Search"), NULL, N_("Stop currently running search"), G_CALLBACK (action_calendar_search_stop_cb) }, |