[gtkhtml] Bug 681087 - Add tooltips for editor toolbar items.



commit 27a43ee0429594980d51fff2b050d75314177934
Author: Michael Wood <michael g wood linux intel com>
Date:   Thu Aug 2 22:49:35 2012 -0400

    Bug 681087 - Add tooltips for editor toolbar items.

 components/editor/gtkhtml-editor-actions.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/components/editor/gtkhtml-editor-actions.c b/components/editor/gtkhtml-editor-actions.c
index b2f3b82..35d174f 100644
--- a/components/editor/gtkhtml-editor-actions.c
+++ b/components/editor/gtkhtml-editor-actions.c
@@ -1220,14 +1220,14 @@ static GtkActionEntry core_entries[] = {
 	  GTK_STOCK_COPY,
 	  N_("_Copy"),
 	  "<Control>c",
-	  NULL,
+	  N_("Copy selected text to the clipboard"),
 	  G_CALLBACK (action_copy_cb) },
 
 	{ "cut",
 	  GTK_STOCK_CUT,
 	  N_("Cu_t"),
 	  "<Control>x",
-	  NULL,
+	  N_("Cut selected text to the clipboard"),
 	  G_CALLBACK (action_cut_cb) },
 
 	{ "find",
@@ -1276,7 +1276,7 @@ static GtkActionEntry core_entries[] = {
 	  GTK_STOCK_PASTE,
 	  N_("_Paste"),
 	  "<Control>v",
-	  NULL,
+	  N_("Paste text from the clipboard"),
 	  G_CALLBACK (action_paste_cb) },
 
 	{ "paste-quote",
@@ -1290,7 +1290,7 @@ static GtkActionEntry core_entries[] = {
 	  GTK_STOCK_REDO,
 	  N_("_Redo"),
 	  "<Shift><Control>z",
-	  NULL,
+	  N_("Redo the last undone action"),
 	  G_CALLBACK (action_redo_cb) },
 
 	{ "select-all",
@@ -1304,14 +1304,14 @@ static GtkActionEntry core_entries[] = {
 	  GTK_STOCK_FIND,
 	  N_("_Find..."),
 	  "<Control>f",
-	  NULL,
+	  N_("Search for text"),
 	  G_CALLBACK (action_show_find_cb) },
 
 	{ "show-replace",
 	  GTK_STOCK_FIND_AND_REPLACE,
 	  N_("Re_place..."),
 	  "<Control>h",
-	  NULL,
+	  N_("Search for and replace text"),
 	  G_CALLBACK (action_show_replace_cb) },
 
 	{ "spell-check",
@@ -1332,7 +1332,7 @@ static GtkActionEntry core_entries[] = {
 	  GTK_STOCK_UNDO,
 	  N_("_Undo"),
 	  "<Control>z",
-	  NULL,
+	  N_("Undo the last action"),
 	  G_CALLBACK (action_undo_cb) },
 
 	{ "unindent",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]