From: Christian Dywan Date: Sat, 30 Oct 2010 19:44:19 +0000 (+0200) Subject: Use mnemonic for "History" in Clear Private Data X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0c0207133536c109797f659cb2be0e539a6fb2a;p=midori Use mnemonic for "History" in Clear Private Data This doesn't introduce a new string. --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index b0860454..503f42b4 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -4301,7 +4301,7 @@ _action_clear_private_data_activate (GtkAction* action, alignment = gtk_alignment_new (0, 0, 1, 1); gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 0, 6, 12, 0); /* i18n: Browsing history, visited web pages */ - button = gtk_check_button_new_with_mnemonic (_("History")); + button = gtk_check_button_new_with_mnemonic (_("_History")); if ((clear_prefs & MIDORI_CLEAR_HISTORY) == MIDORI_CLEAR_HISTORY) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE); g_object_set_data (G_OBJECT (dialog), "history", button);