diff options
author | Milan Crha <mcrha@redhat.com> | 2014-02-25 01:30:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-02-25 01:30:01 +0800 |
commit | be7f5df707a959461b8ee42b1535a5aa27e30ab2 (patch) | |
tree | 8d485b66ced8dbbf6f38f84d07d1c4acf79dd812 | |
parent | e6686ae2d9fa9bb6b373259567b0f59be76e8795 (diff) | |
download | gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar.gz gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar.bz2 gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar.lz gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar.xz gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.tar.zst gsoc2013-evolution-be7f5df707a959461b8ee42b1535a5aa27e30ab2.zip |
Add missing action captions after gtk-stock replacement
-rw-r--r-- | e-util/e-focus-tracker.c | 10 | ||||
-rw-r--r-- | e-util/e-web-view-gtkhtml.c | 2 | ||||
-rw-r--r-- | e-util/e-web-view.c | 2 | ||||
-rw-r--r-- | modules/calendar/e-task-shell-view-actions.c | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/e-util/e-focus-tracker.c b/e-util/e-focus-tracker.c index 0bc6f62392..18f4327f07 100644 --- a/e-util/e-focus-tracker.c +++ b/e-util/e-focus-tracker.c @@ -724,27 +724,27 @@ e_focus_tracker_init (EFocusTracker *focus_tracker) * will always get a valid GtkAction when they ask us for one. */ action = gtk_action_new ( - "cut-clipboard", NULL, + "cut-clipboard", _("Cu_t"), _("Cut the selection"), "edit-cut"); focus_tracker->priv->cut_clipboard = action; action = gtk_action_new ( - "copy-clipboard", NULL, + "copy-clipboard", _("_Copy"), _("Copy the selection"), "edit-copy"); focus_tracker->priv->copy_clipboard = action; action = gtk_action_new ( - "paste-clipboard", NULL, + "paste-clipboard", _("_Paste"), _("Paste the clipboard"), "edit-paste"); focus_tracker->priv->paste_clipboard = action; action = gtk_action_new ( - "delete-selection", NULL, + "delete-selection", _("_Delete"), _("Delete the selection"), "edit-delete"); focus_tracker->priv->delete_selection = action; action = gtk_action_new ( - "select-all", NULL, + "select-all", _("Select _All"), _("Select all text"), "edit-select-all"); focus_tracker->priv->select_all = action; } diff --git a/e-util/e-web-view-gtkhtml.c b/e-util/e-web-view-gtkhtml.c index b958f62105..63c69aa973 100644 --- a/e-util/e-web-view-gtkhtml.c +++ b/e-util/e-web-view-gtkhtml.c @@ -449,7 +449,7 @@ static GtkActionEntry selection_entries[] = { { "copy-clipboard", "edit-copy", - NULL, + N_("_Copy"), "<Control>c", N_("Copy the selection"), G_CALLBACK (action_copy_clipboard_cb) }, diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c index 4569d775df..b69be96eb0 100644 --- a/e-util/e-web-view.c +++ b/e-util/e-web-view.c @@ -333,7 +333,7 @@ static GtkActionEntry selection_entries[] = { { "copy-clipboard", "edit-copy", - NULL, + N_("_Copy"), "<Control>c", N_("Copy the selection"), G_CALLBACK (action_copy_clipboard_cb) }, diff --git a/modules/calendar/e-task-shell-view-actions.c b/modules/calendar/e-task-shell-view-actions.c index c32612d83f..10c1d1ecbe 100644 --- a/modules/calendar/e-task-shell-view-actions.c +++ b/modules/calendar/e-task-shell-view-actions.c @@ -728,7 +728,7 @@ static GtkActionEntry task_entries[] = { { "task-list-copy", "edit-copy", - N_("Copy..."), + N_("_Copy..."), "<Control>c", NULL, /* XXX Add a tooltip! */ G_CALLBACK (action_task_list_copy_cb) }, |