diff src/protocols/oscar/oscar.c @ 8152:82aeed3c90f0

[gaim-migrate @ 8864] I love me some consistency. I went with "screen name" instead of "screenname" mostly because I feel that the first one is more readable. It's also what aim.com uses. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 20 Jan 2004 16:08:45 +0000
parents b619ee745ec0
children 9d1a984681fe
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Tue Jan 20 15:58:39 2004 +0000
+++ b/src/protocols/oscar/oscar.c	Tue Jan 20 16:08:45 2004 +0000
@@ -3745,7 +3745,7 @@
 		od->chpass = FALSE;
 	}
 	if (od->setnick) {
-		gaim_debug(GAIM_DEBUG_INFO, "oscar", "formatting screenname\n");
+		gaim_debug(GAIM_DEBUG_INFO, "oscar", "formatting screen name\n");
 		aim_admin_setnick(sess, fr->conn, od->newsn);
 		g_free(od->newsn);
 		od->newsn = NULL;
@@ -4137,7 +4137,7 @@
 	SNs = va_arg(ap, char *);
 	va_end(ap);
 
-	secondary = g_strdup_printf(_("The following screennames are associated with %s"), email);
+	secondary = g_strdup_printf(_("The following screen names are associated with %s"), email);
 	text = g_string_new("");
 	for (i = 0; i < num; i++)
 		g_string_append_printf(text, "%s<br>", &SNs[i * (MAXSNLEN + 1)]);
@@ -6289,13 +6289,13 @@
 		}
 	} else {
 		gaim_notify_error(gc, NULL, _("The new formatting is invalid."),
-						  _("Screenname formatting can change only capitalization and whitespace."));
+						  _("Screen name formatting can change only capitalization and whitespace."));
 	}
 }
 
 static void oscar_show_format_screenname(GaimConnection *gc)
 {
-	gaim_request_input(gc, NULL, _("New screenname formatting:"), NULL,
+	gaim_request_input(gc, NULL, _("New screen name formatting:"), NULL,
 					   gaim_connection_get_display_name(gc), FALSE, FALSE,
 					   _("OK"), G_CALLBACK(oscar_format_screenname),
 					   _("Cancel"), NULL,
@@ -6537,7 +6537,7 @@
 		m = g_list_append(m, NULL);
 
 		pam = g_new0(struct proto_actions_menu, 1);
-		pam->label = _("Format Screenname...");
+		pam->label = _("Format Screen Name...");
 		pam->callback = oscar_show_format_screenname;
 		pam->gc = gc;
 		m = g_list_append(m, pam);