diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 7 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-01-30 Peter Harvey <peter.a.harvey@gmail.com> + + * src/bookmarks/ephy-bookmark-properties.c + + Add "Show" text to the items in the "Similar" menu. + 2006-01-29 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-gui.c: (ephy_gui_get_current_event): 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); |