diff options
Diffstat (limited to 'src/toolbars/navigation/main-menu.c')
-rw-r--r-- | src/toolbars/navigation/main-menu.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c index fc857fc..4f7df80 100644 --- a/src/toolbars/navigation/main-menu.c +++ b/src/toolbars/navigation/main-menu.c @@ -321,31 +321,31 @@ create_main_grid(MqMainMenu *main_menu) gtk_grid_set_row_homogeneous(GTK_GRID(grid), TRUE); gtk_grid_set_column_homogeneous(GTK_GRID(grid), TRUE); - /* Y, X, ID, ICON, LABEL, + /* Y, X, ID, ICON, LABEL, * TOOLTIP */ - NEW_BTN(0, 0, new_window, "window-new", _("New Window"), + NEW_BTN(0, 0, new_window, "window-new", _("New Window"), _("Open a new window"); - NEW_BTN(0, 1, find, "edit-find", _("Find"), + NEW_BTN(0, 1, find, "edit-find", _("Find"), _("Find text in this page"); - NEW_BTN(0, 2, fullscreen, "view-fullscreen", _("Full Screen"), + NEW_BTN(0, 2, fullscreen, "view-fullscreen", _("Full Screen"), _("Display the window in full screen")); - /* Y, X, ID, ICON, LABEL, + /* Y, X, ID, ICON, LABEL, * TOOLTIP */ - NEW_BTN(1, 0, open, "document-open", _("Open File"), + NEW_BTN(1, 0, open, "document-open", _("Open File"), _("Open a local file"); - NEW_BTN(1, 1, save, "document-save-as", _("Save Page"), + NEW_BTN(1, 1, save, "document-save-as", _("Save Page"), _("Save this page"); - NEW_BTN(1, 2, email_link, "mail-message-new", _("E-mail Link"), + NEW_BTN(1, 2, email_link, "mail-message-new", _("E-mail Link"), _("E-mail a link to this page")); - /* Y, X, ID, ICON, LABEL, + /* Y, X, ID, ICON, LABEL, * TOOLTIP */ - NEW_BTN(2, 0, print_preview, "document-print-preview", _("Print Preview"), + NEW_BTN(2, 0, print_preview,"document-print-preview",_("Print Preview"), _("Preview this page"); - NEW_BTN(2, 1, print, "document-print", _("Print"), + NEW_BTN(2, 1, print, "document-print", _("Print"), _("Print this page"); - NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"), + NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"), _("Open the Web inspector")); gtk_widget_set_sensitive(BTN(1, 2), FALSE); /* E-mail link */ |