comparison src/gtkpounce.c @ 12192:fb89d3a31c19

[gaim-migrate @ 14494] Deconflict key bindings and fix a capitalization normalization I missed. Keybindings suck. I agree that GTK+ should do this automagically. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 22 Nov 2005 22:47:59 +0000
parents b4d1b142f6cb
children 5c5b57067b2e
comparison
equal deleted inserted replaced
12191:bc2b9f925979 12192:fb89d3a31c19
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(_("Ret_urns from away")); 558 gtk_check_button_new_with_mnemonic(_("Ret_urns from away"));
559 dialog->idle = 559 dialog->idle =
560 gtk_check_button_new_with_mnemonic(_("Becomes _Idle")); 560 gtk_check_button_new_with_mnemonic(_("Becomes _idle"));
561 dialog->idle_return = 561 dialog->idle_return =
562 gtk_check_button_new_with_mnemonic(_("Is _no longer idle")); 562 gtk_check_button_new_with_mnemonic(_("Is no longer i_dle"));
563 dialog->typing = 563 dialog->typing =
564 gtk_check_button_new_with_mnemonic(_("Starts _typing")); 564 gtk_check_button_new_with_mnemonic(_("Starts _typing"));
565 dialog->stop_typing = 565 dialog->stop_typing =
566 gtk_check_button_new_with_mnemonic(_("Stops t_yping")); 566 gtk_check_button_new_with_mnemonic(_("Stops t_yping"));
567 567
598 gtk_container_add(GTK_CONTAINER(frame), table); 598 gtk_container_add(GTK_CONTAINER(frame), table);
599 gtk_table_set_col_spacings(GTK_TABLE(table), GAIM_HIG_BORDER); 599 gtk_table_set_col_spacings(GTK_TABLE(table), GAIM_HIG_BORDER);
600 gtk_widget_show(table); 600 gtk_widget_show(table);
601 601
602 dialog->open_win 602 dialog->open_win
603 = gtk_check_button_new_with_mnemonic(_("Op_en an IM window")); 603 = gtk_check_button_new_with_mnemonic(_("Ope_n an IM window"));
604 dialog->popup 604 dialog->popup
605 = gtk_check_button_new_with_mnemonic(_("_Pop up a notification")); 605 = gtk_check_button_new_with_mnemonic(_("_Pop up a notification"));
606 dialog->send_msg 606 dialog->send_msg
607 = gtk_check_button_new_with_mnemonic(_("Send a _message")); 607 = gtk_check_button_new_with_mnemonic(_("Send a _message"));
608 dialog->exec_cmd 608 dialog->exec_cmd
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(_("Brows_e..."));
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(_("Br_owse...")); 617 dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Br_owse..."));
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);