From 7cba06f38dfbef0da5c6a2c673b8f20b679c8b40 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 19 Nov 2017 17:53:43 -0500 Subject: MqMainMenu: Fix button label capitalization Comply with GNOME's and other HIGs. --- (limited to 'src/toolbars/navigation/main-menu.c') diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c index f4290b7..f64cfee 100644 --- a/src/toolbars/navigation/main-menu.c +++ b/src/toolbars/navigation/main-menu.c @@ -322,25 +322,25 @@ create_main_grid(MqMainMenu *main_menu) /* 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", "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, * 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, * 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", "Print this page"); -- cgit v0.9.1