# HG changeset patch # User Richard Laager # Date 1132359405 0 # Node ID 0c672be21798f1f70fe0337527791776b7989073 # Parent dcd2bcad2f3df530d23cd7ada953f65538bfb632 [gaim-migrate @ 14443] Kevin (SimGuy) pointed out that these mnemonics were not unique. GTK+ still handles them nicely, but I figured it would be best to make them distinct when possible. The ones on Account and Buddy name don't work for either of us. I have the same problem in the New Instant Message window. committer: Tailor Script diff -r dcd2bcad2f3d -r 0c672be21798 src/gtkpounce.c --- a/src/gtkpounce.c Fri Nov 18 23:35:26 2005 +0000 +++ b/src/gtkpounce.c Sat Nov 19 00:16:45 2005 +0000 @@ -551,7 +551,7 @@ dialog->signon = gtk_check_button_new_with_mnemonic(_("Si_gns on")); dialog->signoff = - gtk_check_button_new_with_mnemonic(_("Signs _off")); + gtk_check_button_new_with_mnemonic(_("Signs o_ff")); dialog->away = gtk_check_button_new_with_mnemonic(_("Goes a_way")); dialog->away_return = @@ -612,9 +612,9 @@ dialog->send_msg_entry = gtk_entry_new(); dialog->exec_cmd_entry = gtk_entry_new(); - dialog->exec_cmd_browse = gtk_button_new_with_mnemonic(_("B_rowse...")); + dialog->exec_cmd_browse = gtk_button_new_with_mnemonic(_("Br_owse...")); dialog->play_sound_entry = gtk_entry_new(); - dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Bro_wse...")); + dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Brow_se...")); dialog->play_sound_test = gtk_button_new_with_mnemonic(_("Pre_view")); gtk_widget_set_sensitive(dialog->send_msg_entry, FALSE); @@ -698,7 +698,7 @@ /* Now the last part, where we have the Save checkbox */ dialog->save_pounce = gtk_check_button_new_with_mnemonic( - _("K_eep this pounce after the first time it runs")); + _("_Keep this pounce after the first time it runs")); gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0);