[evolution] Add missing action captions after gtk-stock replacement
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Add missing action captions after gtk-stock replacement
- Date: Mon, 24 Feb 2014 17:29:34 +0000 (UTC)
commit be7f5df707a959461b8ee42b1535a5aa27e30ab2
Author: Milan Crha <mcrha redhat com>
Date: Mon Feb 24 18:30:01 2014 +0100
Add missing action captions after gtk-stock replacement
e-util/e-focus-tracker.c | 10 +++++-----
e-util/e-web-view-gtkhtml.c | 2 +-
e-util/e-web-view.c | 2 +-
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 0bc6f62..18f4327 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 b958f62..63c69aa 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 4569d77..b69be96 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 c32612d..10c1d1e 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) },
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]