diff options
Diffstat (limited to 'e-util')
-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 |
3 files changed, 7 insertions, 7 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) }, |