comparison src/gtkpounce.c @ 12142:0c672be21798

[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 <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sat, 19 Nov 2005 00:16:45 +0000
parents dcd2bcad2f3d
children d93e6979b77a
comparison
equal deleted inserted replaced
12141:dcd2bcad2f3d 12142:0c672be21798
549 gtk_widget_show(table); 549 gtk_widget_show(table);
550 550
551 dialog->signon = 551 dialog->signon =
552 gtk_check_button_new_with_mnemonic(_("Si_gns on")); 552 gtk_check_button_new_with_mnemonic(_("Si_gns on"));
553 dialog->signoff = 553 dialog->signoff =
554 gtk_check_button_new_with_mnemonic(_("Signs _off")); 554 gtk_check_button_new_with_mnemonic(_("Signs o_ff"));
555 dialog->away = 555 dialog->away =
556 gtk_check_button_new_with_mnemonic(_("Goes a_way")); 556 gtk_check_button_new_with_mnemonic(_("Goes a_way"));
557 dialog->away_return = 557 dialog->away_return =
558 gtk_check_button_new_with_mnemonic(_("_Returns from away")); 558 gtk_check_button_new_with_mnemonic(_("_Returns from away"));
559 dialog->idle = 559 dialog->idle =
610 dialog->play_sound 610 dialog->play_sound
611 = gtk_check_button_new_with_mnemonic(_("P_lay a sound")); 611 = gtk_check_button_new_with_mnemonic(_("P_lay a sound"));
612 612
613 dialog->send_msg_entry = gtk_entry_new(); 613 dialog->send_msg_entry = gtk_entry_new();
614 dialog->exec_cmd_entry = gtk_entry_new(); 614 dialog->exec_cmd_entry = gtk_entry_new();
615 dialog->exec_cmd_browse = gtk_button_new_with_mnemonic(_("B_rowse...")); 615 dialog->exec_cmd_browse = gtk_button_new_with_mnemonic(_("Br_owse..."));
616 dialog->play_sound_entry = gtk_entry_new(); 616 dialog->play_sound_entry = gtk_entry_new();
617 dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Bro_wse...")); 617 dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Brow_se..."));
618 dialog->play_sound_test = gtk_button_new_with_mnemonic(_("Pre_view")); 618 dialog->play_sound_test = gtk_button_new_with_mnemonic(_("Pre_view"));
619 619
620 gtk_widget_set_sensitive(dialog->send_msg_entry, FALSE); 620 gtk_widget_set_sensitive(dialog->send_msg_entry, FALSE);
621 gtk_widget_set_sensitive(dialog->exec_cmd_entry, FALSE); 621 gtk_widget_set_sensitive(dialog->exec_cmd_entry, FALSE);
622 gtk_widget_set_sensitive(dialog->exec_cmd_browse, FALSE); 622 gtk_widget_set_sensitive(dialog->exec_cmd_browse, FALSE);
696 g_signal_connect(G_OBJECT(dialog->play_sound_entry), "activate", 696 g_signal_connect(G_OBJECT(dialog->play_sound_entry), "activate",
697 G_CALLBACK(save_pounce_cb), dialog); 697 G_CALLBACK(save_pounce_cb), dialog);
698 698
699 /* Now the last part, where we have the Save checkbox */ 699 /* Now the last part, where we have the Save checkbox */
700 dialog->save_pounce = gtk_check_button_new_with_mnemonic( 700 dialog->save_pounce = gtk_check_button_new_with_mnemonic(
701 _("K_eep this pounce after the first time it runs")); 701 _("_Keep this pounce after the first time it runs"));
702 702
703 gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0); 703 gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0);
704 704
705 /* Now the button box! */ 705 /* Now the button box! */
706 bbox = gtk_hbutton_box_new(); 706 bbox = gtk_hbutton_box_new();