diff options
author | David Adam Bordoley <bordoley@msu.edu> | 2003-05-09 02:11:33 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-05-09 02:11:33 +0800 |
commit | 11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875 (patch) | |
tree | 501f67316198e5c708965433cf971ec07a7291da /src/ephy-window.c | |
parent | 58045fd02a6447a3551dfa34087e3c71e77032c8 (diff) | |
download | gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar.gz gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar.bz2 gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar.lz gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar.xz gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.tar.zst gsoc2013-epiphany-11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875.zip |
s/location/address. Fix up mnemonic collisions in the print dialog. Mark
2003-05-08 David Adam Bordoley <bordoley@msu.edu>
* TODO:
* data/glade/epiphany.glade:
* data/glade/prefs-dialog.glade:
* data/glade/print.glade:
* src/ephy-history-window.c: (ephy_history_ui_entries [])
(ephy_history_window_update_menu),
(ephy_history_window_construct):
* src/ephy-window.c: (ephy_popups_entries []),
* src/toolbar.c: (toolbar_setup_actions):
* src/bookmarks/ephy-bookmark-properties.c: (build_ui):
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmark_popup_entries []),
(ephy_bookmarks_editor_update_menu):
s/location/address. Fix up mnemonic collisions
in the print dialog. Mark toolbar action names
for translation. s/location/"address entry" for
the entry bar name (this may change depending
on what the docs team says). Add a todo
about changing code to use address where
appropriate.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 51d26f38a..7aa87e8e7 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -229,7 +229,7 @@ static EggActionGroupEntry ephy_popups_entries [] = { NULL, G_CALLBACK (popup_cmd_download_link), NULL }, { "BookmarkLink", N_("_Bookmark Link..."), EPHY_STOCK_BOOKMARK_PAGE, NULL, NULL, G_CALLBACK (popup_cmd_bookmark_link), NULL }, - { "CopyLinkLocation", N_("_Copy Link Location"), NULL, NULL, + { "CopyLinkLocation", N_("_Copy Link Address"), NULL, NULL, NULL, G_CALLBACK (popup_cmd_copy_link_location), NULL }, { "CopyEmail", N_("Copy _Email"), NULL, NULL, NULL, G_CALLBACK (popup_cmd_copy_email), NULL }, @@ -245,7 +245,7 @@ static EggActionGroupEntry ephy_popups_entries [] = { NULL, G_CALLBACK (popup_cmd_save_image_as), NULL }, { "SetImageAsBackground", N_("Use Image As _Background"), NULL, NULL, NULL, G_CALLBACK (popup_cmd_set_image_as_background), NULL }, - { "CopyImageLocation", N_("_Copy Image Location"), GTK_STOCK_COPY, NULL, + { "CopyImageLocation", N_("_Copy Image Address"), GTK_STOCK_COPY, NULL, NULL, G_CALLBACK (popup_cmd_copy_image_location), NULL }, }; static guint ephy_popups_n_entries = G_N_ELEMENTS (ephy_popups_entries); |