From 7b01ba1f4fe551a2e00d35aecfe82282f2cbac43 Mon Sep 17 00:00:00 2001 From: Peter Harvey Date: Mon, 30 Jan 2006 07:45:16 +0000 Subject: src/bookmarks/ephy-bookmark-properties.c 2006-01-30 Peter Harvey * src/bookmarks/ephy-bookmark-properties.c Add "Show" text to the items in the "Similar" menu. --- src/bookmarks/ephy-bookmark-properties.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index a1c7066e8..ec6e60a87 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -224,6 +224,7 @@ show_duplicate_cb (GtkButton *button, GPtrArray *duplicates; GtkMenuShell *menu; GtkWidget *item, *image; + char *label; gint i; update_warning (properties); @@ -251,8 +252,10 @@ show_duplicate_cb (GtkButton *button, for (i = 0; i < duplicates->len; i++) { node = g_ptr_array_index (duplicates, i); - item = gtk_image_menu_item_new_with_label - (ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_TITLE)); + label = g_strdup_printf (_("Show ā€œ%sā€"), + ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_TITLE)); + item = gtk_image_menu_item_new_with_label (label); + g_free (label); g_signal_connect (item, "activate", G_CALLBACK (activate_show_cb), node); gtk_widget_show (item); gtk_menu_shell_append (menu, item); -- cgit v1.2.3