aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-focus-tracker.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-02-25 01:30:01 +0800
committerMilan Crha <mcrha@redhat.com>2014-02-25 01:30:01 +0800
commitbe7f5df707a959461b8ee42b1535a5aa27e30ab2 (patch)
tree8d485b66ced8dbbf6f38f84d07d1c4acf79dd812 /e-util/e-focus-tracker.c
parente6686ae2d9fa9bb6b373259567b0f59be76e8795 (diff)
downloadgsoc2013-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
Diffstat (limited to 'e-util/e-focus-tracker.c')
-rw-r--r--e-util/e-focus-tracker.c10
1 files changed, 5 insertions, 5 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;
}