diff options
author | David Bordoley <bordoley@msu.edu> | 2003-05-14 03:33:09 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-05-14 03:33:09 +0800 |
commit | 0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59 (patch) | |
tree | ebc09e126db0d50de8a31981a65cb78b4f7a41cb /src | |
parent | d642127eebe872d0f98d39b8e9656555fefea6b0 (diff) | |
download | gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar.gz gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar.bz2 gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar.lz gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar.xz gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.tar.zst gsoc2013-epiphany-0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59.zip |
s/bookmark page/bookmark link, more consistent with the docs and better
2003-05-13 David Bordoley <bordoley@msu.edu>
* data/ui/epiphany-history-window-ui.xml.in:
* src/ephy-history-window.c:
s/bookmark page/bookmark link, more consistent with
the docs and better ui.
* help/C/epiphany.xml:
Start the create a bookmark section. Needs more work.
Finish to open/copy address bookmark/history link sections.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-history-window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 2d273a4a0..8fd0115e1 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -76,7 +76,7 @@ static void cmd_open_bookmarks_in_browser (EggAction *action, EphyHistoryWindow *editor); static void cmd_delete (EggAction *action, EphyHistoryWindow *editor); -static void cmd_bookmark_page (EggAction *action, +static void cmd_bookmark_link (EggAction *action, EphyHistoryWindow *editor); static void cmd_clear (EggAction *action, EphyHistoryWindow *editor); @@ -133,9 +133,9 @@ static EggActionGroupEntry ephy_history_ui_entries [] = { { "Delete", N_("_Delete"), GTK_STOCK_DELETE, NULL, N_("Delete the selected history link"), G_CALLBACK (cmd_delete), NULL }, - { "BookmarkPage", N_("Boo_kmark Page..."), EPHY_STOCK_BOOKMARK_PAGE, "<control>D", + { "BookmarkLink", N_("Boo_kmark Link..."), EPHY_STOCK_BOOKMARK_PAGE, "<control>D", N_("Bookmark the selected history link"), - G_CALLBACK (cmd_bookmark_page), NULL }, + G_CALLBACK (cmd_bookmark_link), NULL }, { "Close", N_("_Close"), GTK_STOCK_CLOSE, "<control>W", N_("Close the history window"), G_CALLBACK (cmd_close), NULL }, @@ -440,7 +440,7 @@ cmd_delete (EggAction *action, } static void -cmd_bookmark_page (EggAction *action, +cmd_bookmark_link (EggAction *action, EphyHistoryWindow *editor) { GtkWindow *window; |