aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-01-22 19:50:33 +0800
committerXan Lopez <xan@igalia.com>2012-01-22 19:50:33 +0800
commitb0ef246be84b2a3d2ac353a504d33dac1af9baed (patch)
treee5f0956fa18e221031829e2c47b55748bbd7bf8f
parentd8a976f0e3f809917ff3c97263d23168bf850af3 (diff)
downloadgsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar.gz
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar.bz2
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar.lz
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar.xz
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.tar.zst
gsoc2013-epiphany-b0ef246be84b2a3d2ac353a504d33dac1af9baed.zip
ephy-window: update comments a bit in window actions
In particular, don't mention the menus anymore, since they do not exist.
-rw-r--r--src/ephy-window.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index d5655ec7e..a82321afe 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -95,7 +95,7 @@ static const GtkActionEntry ephy_menu_entries [] = {
{ "PagePopupAction", NULL, "" },
{ "NotebookPopupAction", NULL, "" },
- /* File menu */
+ /* File actions. */
{ "FileOpen", GTK_STOCK_OPEN, N_("_Open…"), "<control>O",
N_("Open a file"),
@@ -116,7 +116,7 @@ static const GtkActionEntry ephy_menu_entries [] = {
N_("Close this tab"),
G_CALLBACK (window_cmd_file_close_window) },
- /* Edit menu */
+ /* Edit actions. */
{ "EditUndo", GTK_STOCK_UNDO, N_("_Undo"), "<control>Z",
N_("Undo the last action"),
@@ -149,7 +149,7 @@ static const GtkActionEntry ephy_menu_entries [] = {
N_("Find previous occurrence of the word or phrase"),
G_CALLBACK (window_cmd_edit_find_prev) },
- /* View menu */
+ /* View actions. */
{ "ViewStop", GTK_STOCK_STOP, N_("_Stop"), "Escape",
N_("Stop current data transfer"),
@@ -175,19 +175,19 @@ static const GtkActionEntry ephy_menu_entries [] = {
N_("View the source code of the page"),
G_CALLBACK (window_cmd_view_page_source) },
- /* Bookmarks menu */
+ /* Bookmarks actions. */
{ "FileBookmarkPage", STOCK_ADD_BOOKMARK, N_("_Add Bookmark…"), "<control>D",
N_("Add a bookmark for the current page"),
G_CALLBACK (window_cmd_file_bookmark_page) },
- /* Go menu */
+ /* Go actions. */
{ "GoLocation", NULL, N_("_Location…"), "<control>L",
N_("Go to a specified location"),
G_CALLBACK (window_cmd_go_location) },
- /* Tabs menu */
+ /* Tabs actions. */
{ "TabsPrevious", NULL, N_("_Previous Tab"), "<control>Page_Up",
N_("Activate previous tab"),
@@ -208,13 +208,13 @@ static const GtkActionEntry ephy_menu_entries [] = {
static const GtkToggleActionEntry ephy_menu_toggle_entries [] =
{
- /* File Menu */
+ /* File actions. */
{ "FileWorkOffline", NULL, N_("_Work Offline"), NULL,
N_("Switch to offline mode"),
G_CALLBACK (window_cmd_file_work_offline), FALSE },
- /* View Menu */
+ /* View actions. */
{ "ViewDownloadsBar", NULL, N_("_Downloads Bar"), NULL,
N_("Show the active downloads for this window"),
@@ -232,19 +232,19 @@ static const GtkToggleActionEntry ephy_menu_toggle_entries [] =
};
static const GtkActionEntry ephy_popups_entries [] = {
- /* Document */
+ /* Document. */
{ "ContextBookmarkPage", STOCK_ADD_BOOKMARK, N_("Add Boo_kmark…"), "<control>D",
N_("Add a bookmark for the current page"),
G_CALLBACK (window_cmd_file_bookmark_page) },
- /* Framed document */
+ /* Framed document. */
{ "OpenFrame", NULL, N_("Show Only _This Frame"), NULL,
N_("Show only this frame in this window"),
G_CALLBACK (popup_cmd_open_frame) },
- /* Links */
+ /* Links. */
{ "OpenLink", GTK_STOCK_JUMP_TO, N_("_Open Link"), NULL,
N_("Open link in this window"),
@@ -265,7 +265,7 @@ static const GtkActionEntry ephy_popups_entries [] = {
{ "CopyLinkAddress", NULL, N_("_Copy Link Address"), NULL,
NULL, G_CALLBACK (popup_cmd_copy_link_address) },
- /* Email links */
+ /* Email links. */
/* This is on the context menu on a mailto: link and opens the mail program */
{ "SendEmail", STOCK_NEW_MAIL, N_("_Send Email…"),
@@ -273,7 +273,7 @@ static const GtkActionEntry ephy_popups_entries [] = {
{ "CopyEmailAddress", NULL, N_("_Copy Email Address"), NULL,
NULL, G_CALLBACK (popup_cmd_copy_link_address) },
- /* Images */
+ /* Images. */
{ "OpenImage", NULL, N_("Open _Image"), NULL,
NULL, G_CALLBACK (popup_cmd_open_image) },
@@ -288,7 +288,7 @@ static const GtkActionEntry ephy_popups_entries [] = {
{ "StopImageAnimation", NULL, N_("St_op Animation"), NULL,
NULL, NULL },
- /* Spelling */
+ /* Spelling. */
{ "ReplaceWithSpellingSuggestion0", NULL, NULL, NULL,
NULL, G_CALLBACK (popup_replace_spelling), },
@@ -300,7 +300,7 @@ static const GtkActionEntry ephy_popups_entries [] = {
NULL, G_CALLBACK (popup_replace_spelling), },
- /* Inspector */
+ /* Inspector. */
{ "InspectElement", NULL, N_("Inspect _Element"), NULL,
NULL, G_CALLBACK (popup_cmd_inspect_element) },
};