changeset 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 cbebda5f019c
files src/gtkpounce.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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);