diff options
author | David Bordoley <bordoley@msu.edu> | 2003-04-21 20:36:40 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-04-21 20:36:40 +0800 |
commit | 861ffe47ca91ae1fa7a39c422c6941885d31bb2d (patch) | |
tree | 423ec5b23d08b32c42e1d5c0992b407255af1e75 /src/bookmarks/ephy-bookmark-properties.c | |
parent | 89f94d0afc4ce506aea6ad94ccb0f64cf6679851 (diff) | |
download | gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar.gz gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar.bz2 gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar.lz gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar.xz gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.tar.zst gsoc2013-epiphany-861ffe47ca91ae1fa7a39c422c6941885d31bb2d.zip |
Fixed a duplicate seperator. Add a view menu.
2003-04-21 David Bordoley <bordoley@msu.edu>
* data/ui/epiphany-bookmark-editor-ui.xml.in:
Fixed a duplicate seperator. Add a view menu.
* data/ui/epiphany-history-window-ui.xml.in:
Add a view menu.
* src/ephy-history-window.c: (ephy_history_window_construct):
Clean up ephy_history_ui_entries[] so that it is a little more
organized. Add a view menu, but still needs to be hooked up.
* src/bookmarks/ephy-bookmark-properties.c: (build_ui):
s/"Show in the bookmarks _toolbar"/"_Show in the bookmarks toolbar".
Fixes a mnemonic collision.
* src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct):
Clean up ephy_bookmark_popup_entries[] so that it is a little more
organized. Add a view menu, but still needs to be hooked up. Add mnemonic
to the "_Show in Toolbar" menu entry.
Diffstat (limited to 'src/bookmarks/ephy-bookmark-properties.c')
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index 1de14b433..9d6fde632 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -402,7 +402,7 @@ build_ui (EphyBookmarkProperties *editor) gtk_table_attach (GTK_TABLE (table), scrolled_window, 1, 2, 2, 3, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); - checkbox = gtk_check_button_new_with_mnemonic (_("Show in the bookmarks _toolbar")); + checkbox = gtk_check_button_new_with_mnemonic (_("_Show in the bookmarks toolbar")); state = ephy_node_get_property_boolean (editor->priv->bookmark, EPHY_NODE_BMK_PROP_SHOW_IN_TOOLBAR); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox), state); |