diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-20 13:27:05 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-20 13:27:05 (EST) |
commit | e4c24fc80199b4e547a55e290da598a1728de138 (patch) | |
tree | 7a6dff11a09f2e2ebe41e11798df94d32dce08f0 /src | |
parent | beef57ab1ec35074eda4e6b330af79c9059e9b11 (diff) | |
download | marquee-e4c24fc80199b4e547a55e290da598a1728de138.zip marquee-e4c24fc80199b4e547a55e290da598a1728de138.tar.gz marquee-e4c24fc80199b4e547a55e290da598a1728de138.tar.bz2 |
MqWindow: Fix check button label capitalization
Comply with GNOME's and other HIGs.
Diffstat (limited to 'src')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |