From 6c17f0940df462dbc90dd92636e6326e4cd13b16 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 20 Nov 2017 13:13:21 -0500 Subject: MqMainMenu: Add some missing parentheses Syntax error introduced in commit 84b7af8. --- diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c index 94b0b7c..9eea59c 100644 --- a/src/toolbars/navigation/main-menu.c +++ b/src/toolbars/navigation/main-menu.c @@ -324,27 +324,27 @@ create_main_grid(MqMainMenu *main_menu) /* Y, X, ID, ICON, LABEL, * TOOLTIP */ NEW_BTN(0, 0, new_window, "window-new", _("New Window"), - _("Open a new window"); + _("Open a new window")); NEW_BTN(0, 1, find, "edit-find", _("Find"), - _("Find text in this page"); + _("Find text in this page")); 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"), - _("Open a local file"); + _("Open a local file")); NEW_BTN(1, 1, save, "document-save-as", _("Save Page"), - _("Save this page"); + _("Save this page")); 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"), - _("Preview this page"); + _("Preview this page")); NEW_BTN(2, 1, print, "document-print", _("Print"), - _("Print this page"); + _("Print this page")); NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"), _("Open the Web inspector")); -- cgit v0.9.1