[gaim-migrate @ 14443]

Sat, 19 Nov 2005 00:16:45 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Sat, 19 Nov 2005 00:16:45 +0000
changeset 12142
45aba96df80d
parent 12141
9cd436b9b7f6
child 12143
09f216663302

[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.

src/gtkpounce.c file | annotate | diff | comparison | revisions
--- 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);
 

mercurial