Use mnemonic for "History" in Clear Private Data

This doesn't introduce a new string.
This commit is contained in:
Christian Dywan 2010-10-30 21:44:19 +02:00
parent 2578d031a7
commit a0c0207133

View file

@ -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);