diff options
author | David Bordoley <bordoley@msu.edu> | 2003-05-16 00:12:26 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-05-16 00:12:26 +0800 |
commit | b1181741dc793b50081915e6132530e3f43a1432 (patch) | |
tree | 783114c8f83adaf8b199b07636389a9c925b2763 | |
parent | 61441046e925a8abd1cf8ba9580309504c1903d9 (diff) | |
download | gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar.gz gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar.bz2 gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar.lz gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar.xz gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.tar.zst gsoc2013-epiphany-b1181741dc793b50081915e6132530e3f43a1432.zip |
Add elipses to rename menu entry.
2003-05-15 David Bordoley <bordoley@msu.edu>
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmark_popup_entries []):
Add elipses to rename menu entry.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2003-05-15 David Bordoley <bordoley@msu.edu> + + * src/bookmarks/ephy-bookmarks-editor.c: + (ephy_bookmark_popup_entries []): + + Add elipses to rename menu entry. + 2003-05-14 Miloslav Trmac <mitr@volny.cz> * configure.in: Added Czech (cs) to ALL_LINGUAS. diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index de9520d2e..4745a18d8 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -157,7 +157,7 @@ static EggActionGroupEntry ephy_bookmark_popup_entries [] = { { "OpenInTab", N_("Open in New _Tab"), NULL, "<shift><control>O", N_("Open the selected bookmark in a new tab"), G_CALLBACK (cmd_open_bookmarks_in_tabs), NULL }, - { "Rename", N_("_Rename"), NULL, "F2", + { "Rename", N_("_Rename..."), NULL, "F2", N_("Rename the selected bookmark or topic"), G_CALLBACK (cmd_rename), NULL }, { "Delete", N_("_Delete"), GTK_STOCK_DELETE, NULL, N_("Delete the selected bookmark or topic"), |