diff src/gtkdialogs.c @ 10812:d087e928ffd1

[gaim-migrate @ 12465] " A variety of spacing normalization I've done as I've navigated the source making other changes. The specific changes should be uncontroversial. I'm submitting these to shrink the deltas between my local tree and the CVS source. If spacing changes are unwelcome as a general rule, let me know." --rlaager I said not to do this sort of patch often. also a spelling fix. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 11 Apr 2005 04:32:26 +0000
parents 2ab4b5acc8d1
children 290131d5f626
line wrap: on
line diff
--- a/src/gtkdialogs.c	Mon Apr 11 04:07:50 2005 +0000
+++ b/src/gtkdialogs.c	Mon Apr 11 04:32:26 2005 +0000
@@ -515,7 +515,7 @@
 				     "<span weight=\"bold\" size=\"large\" foreground=\"#1f6bad\">Pimpin\' Penguin Style! *Waddle Waddle*</span>");
 	else if (!strcmp(norm, "flynorange"))
 		gtk_label_set_markup(GTK_LABEL(label),
-				      "<span weight=\"bold\" size=\"large\" foreground=\"blue\">You should be me.  I'm so cute!</span>");
+				      "<span weight=\"bold\" size=\"large\" foreground=\"blue\">You should be me. I'm so cute!</span>");
 	else if (!strcmp(norm, "ewarmenhoven"))
 		gtk_label_set_markup(GTK_LABEL(label),
 				     "<span weight=\"bold\" size=\"large\" foreground=\"orange\">Now that's what I like!</span>");
@@ -530,7 +530,7 @@
 				     "<span weight=\"bold\" size=\"large\" foreground=\"red\">This sunflower seed taste like pizza.</span>");
 	else if (!strcmp(norm, "markdoliner"))
 		gtk_label_set_markup(GTK_LABEL(label),
-				     "<span weight=\"bold\" size=\"large\" foreground=\"#6364B1\">Hey!  I was in that tumbleweed!</span>");
+				     "<span weight=\"bold\" size=\"large\" foreground=\"#6364B1\">Hey! I was in that tumbleweed!</span>");
 	else if (!strcmp(norm, "lschiere"))
 		gtk_label_set_markup(GTK_LABEL(label),
 				     "<span weight=\"bold\" size=\"large\" foreground=\"gray\">I'm not anything.</span>");
@@ -845,10 +845,10 @@
 		text = g_strdup_printf(
 					ngettext(
 						"You are about to remove the contact containing %s "
-						"and %d other buddy from your buddy list.  Do you "
+						"and %d other buddy from your buddy list. Do you "
 						"want to continue?",
 						"You are about to remove the contact containing %s "
-						"and %d other buddies from your buddy list.  Do you "
+						"and %d other buddies from your buddy list. Do you "
 						"want to continue?", contact->totalsize - 1),
 					buddy->name, contact->totalsize - 1);
 
@@ -911,7 +911,7 @@
 
 	g_return_if_fail(group != NULL);
 
-	text = g_strdup_printf(_("You are about to remove the group %s and all its members from your buddy list.  Do you want to continue?"),
+	text = g_strdup_printf(_("You are about to remove the group %s and all its members from your buddy list. Do you want to continue?"),
 						   group->name);
 
 	gaim_request_action(group, NULL, _("Remove Group"), text, 0, group, 2,
@@ -953,7 +953,7 @@
 
 	g_return_if_fail(buddy != NULL);
 
-	text = g_strdup_printf(_("You are about to remove %s from your buddy list.  Do you want to continue?"),
+	text = g_strdup_printf(_("You are about to remove %s from your buddy list. Do you want to continue?"),
 						   buddy->name);
 
 	gaim_request_action(buddy, NULL, _("Remove Buddy"), text, 0, buddy, 2,
@@ -990,7 +990,7 @@
 gaim_gtkdialogs_remove_chat(GaimChat *chat)
 {
 	const gchar *name = gaim_chat_get_name(chat);
-	gchar *text = g_strdup_printf(_("You are about to remove the chat %s from your buddy list.  Do you want to continue?"), name);
+	gchar *text = g_strdup_printf(_("You are about to remove the chat %s from your buddy list. Do you want to continue?"), name);
 
 	g_return_if_fail(chat != NULL);