From e4c24fc80199b4e547a55e290da598a1728de138 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 20 Nov 2017 13:27:05 -0500 Subject: MqWindow: Fix check button label capitalization Comply with GNOME's and other HIGs. --- diff --git a/src/window.c b/src/window.c index 21c1595..3a05461 100644 --- a/src/window.c +++ b/src/window.c @@ -133,7 +133,7 @@ delete_event_cb(MqWindow *window, GdkEvent G_GNUC_UNUSED *event) /* Check button */ check_button = gtk_check_button_new_with_mnemonic( - _("_Warn When Closing Multiple Tabs or Windows")); + _("_Warn when closing multiple tabs or windows")); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_button), mq_config_get_boolean(window->config, "tabs.warn-on-close")); /* Connect signal after setting initial toggle status, to avoid a -- cgit v0.9.1