diff options
author | Peter Harvey <peter.a.harvey@gmail.com> | 2006-01-30 15:45:16 +0800 |
---|---|---|
committer | Peter Anthony Harvey <paharvey@src.gnome.org> | 2006-01-30 15:45:16 +0800 |
commit | 7b01ba1f4fe551a2e00d35aecfe82282f2cbac43 (patch) | |
tree | f78363dbad8ff5aa0da6381a4b9efff102bad893 | |
parent | 9f72ac78fb062fd4ebef6693f7d478262b89aaa5 (diff) | |
download | gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar.gz gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar.bz2 gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar.lz gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar.xz gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.tar.zst gsoc2013-epiphany-7b01ba1f4fe551a2e00d35aecfe82282f2cbac43.zip |
src/bookmarks/ephy-bookmark-properties.c
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.
-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); |