summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-19 17:53:43 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-19 17:53:43 (EST)
commit7cba06f38dfbef0da5c6a2c673b8f20b679c8b40 (patch)
treeb9f2fa417558f143549cd72e83f07741c63694ee
parentedfe813cff04b2d115f317b1da9ab89d45b488fe (diff)
downloadmarquee-7cba06f38dfbef0da5c6a2c673b8f20b679c8b40.zip
marquee-7cba06f38dfbef0da5c6a2c673b8f20b679c8b40.tar.gz
marquee-7cba06f38dfbef0da5c6a2c673b8f20b679c8b40.tar.bz2
MqMainMenu: Fix button label capitalization
Comply with GNOME's and other HIGs.
-rw-r--r--src/toolbars/navigation/main-menu.c12
1 files changed, 6 insertions, 6 deletions
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");