changeset 12141:dcd2bcad2f3d

[gaim-migrate @ 14442] These strings have been bothering me for quite some time. Flame me if you object to the changes. I also changed the default pounce action to 'pop up notification'. This isn't a big deal, as the action(s) you choose are saved as the default for the next time. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 18 Nov 2005 23:35:26 +0000
parents ed6c64e5e0ed
children 0c672be21798
files src/gtkpounce.c
diffstat 1 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkpounce.c	Fri Nov 18 23:14:48 2005 +0000
+++ b/src/gtkpounce.c	Fri Nov 18 23:35:26 2005 +0000
@@ -541,7 +541,7 @@
 	}
 
 	/* Create the "Pounce When" frame. */
-	frame = gaim_gtk_make_frame(vbox2, _("Pounce When"));
+	frame = gaim_gtk_make_frame(vbox2, _("Pounce When Buddy..."));
 
 	table = gtk_table_new(2, 4, FALSE);
 	gtk_container_add(GTK_CONTAINER(frame), table);
@@ -549,21 +549,21 @@
 	gtk_widget_show(table);
 
 	dialog->signon =
-		gtk_check_button_new_with_mnemonic(_("Si_gn on"));
+		gtk_check_button_new_with_mnemonic(_("Si_gns on"));
 	dialog->signoff =
-		gtk_check_button_new_with_mnemonic(_("Sign _off"));
+		gtk_check_button_new_with_mnemonic(_("Signs _off"));
 	dialog->away =
-		gtk_check_button_new_with_mnemonic(_("A_way"));
+		gtk_check_button_new_with_mnemonic(_("Goes a_way"));
 	dialog->away_return =
-		gtk_check_button_new_with_mnemonic(_("_Return from away"));
+		gtk_check_button_new_with_mnemonic(_("_Returns from away"));
 	dialog->idle =
-		gtk_check_button_new_with_mnemonic(_("_Idle"));
+		gtk_check_button_new_with_mnemonic(_("Becomes _Idle"));
 	dialog->idle_return =
-		gtk_check_button_new_with_mnemonic(_("Retur_n from idle"));
+		gtk_check_button_new_with_mnemonic(_("Is _no longer idle"));
 	dialog->typing =
-		gtk_check_button_new_with_mnemonic(_("Buddy starts _typing"));
+		gtk_check_button_new_with_mnemonic(_("Starts _typing"));
 	dialog->stop_typing =
-		gtk_check_button_new_with_mnemonic(_("Buddy stops t_yping"));
+		gtk_check_button_new_with_mnemonic(_("Stops t_yping"));
 
 	gtk_table_attach(GTK_TABLE(table), dialog->signon,      0, 1, 0, 1,
 					 GTK_FILL, 0, 0, 0);
@@ -602,7 +602,7 @@
 	dialog->open_win
 		= gtk_check_button_new_with_mnemonic(_("Op_en an IM window"));
 	dialog->popup
-		= gtk_check_button_new_with_mnemonic(_("_Popup notification"));
+		= gtk_check_button_new_with_mnemonic(_("_Pop up a notification"));
 	dialog->send_msg
 		= gtk_check_button_new_with_mnemonic(_("Send a _message"));
 	dialog->exec_cmd
@@ -698,7 +698,7 @@
 
 	/* Now the last part, where we have the Save checkbox */
 	dialog->save_pounce = gtk_check_button_new_with_mnemonic(
-		_("Sav_e this pounce after activation"));
+		_("K_eep this pounce after the first time it runs"));
 
 	gtk_box_pack_start(GTK_BOX(vbox2), dialog->save_pounce, FALSE, FALSE, 0);
 
@@ -1525,9 +1525,9 @@
 	gaim_prefs_add_bool("/gaim/gtk/pounces/default_actions/open-window",
 						FALSE);
 	gaim_prefs_add_bool("/gaim/gtk/pounces/default_actions/popup-notify",
-						FALSE);
+						TRUE);
 	gaim_prefs_add_bool("/gaim/gtk/pounces/default_actions/send-message",
-						TRUE);
+						FALSE);
 	gaim_prefs_add_bool("/gaim/gtk/pounces/default_actions/execute-command",
 						FALSE);
 	gaim_prefs_add_bool("/gaim/gtk/pounces/default_actions/play-sound",