# HG changeset patch # User Richard Laager # Date 1132699679 0 # Node ID fb89d3a31c19f6efad3fd4c84458c4486a1b7c27 # Parent bc2b9f9259790fe3cd1122f25823b4f97ee506a9 [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 diff -r bc2b9f925979 -r fb89d3a31c19 src/gtkpounce.c --- a/src/gtkpounce.c Tue Nov 22 22:39:08 2005 +0000 +++ b/src/gtkpounce.c Tue Nov 22 22:47:59 2005 +0000 @@ -557,9 +557,9 @@ dialog->away_return = gtk_check_button_new_with_mnemonic(_("Ret_urns from away")); dialog->idle = - gtk_check_button_new_with_mnemonic(_("Becomes _Idle")); + gtk_check_button_new_with_mnemonic(_("Becomes _idle")); dialog->idle_return = - gtk_check_button_new_with_mnemonic(_("Is _no longer idle")); + gtk_check_button_new_with_mnemonic(_("Is no longer i_dle")); dialog->typing = gtk_check_button_new_with_mnemonic(_("Starts _typing")); dialog->stop_typing = @@ -600,7 +600,7 @@ gtk_widget_show(table); dialog->open_win - = gtk_check_button_new_with_mnemonic(_("Op_en an IM window")); + = gtk_check_button_new_with_mnemonic(_("Ope_n an IM window")); dialog->popup = gtk_check_button_new_with_mnemonic(_("_Pop up a notification")); dialog->send_msg @@ -612,7 +612,7 @@ 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(_("Brows_e...")); dialog->play_sound_entry = gtk_entry_new(); dialog->play_sound_browse = gtk_button_new_with_mnemonic(_("Br_owse...")); dialog->play_sound_test = gtk_button_new_with_mnemonic(_("Pre_view"));