# HG changeset patch # User Paul Aurich # Date 1253331865 0 # Node ID 77a007e0de1f97f8ab6d8c4aa3e76c2909dc0320 # Parent 126251d39bcc2480bdeb2e1c958df7078e5698ae Concordance between "Usernames" and "addresses" diff -r 126251d39bcc -r 77a007e0de1f libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Sat Sep 19 02:46:19 2009 +0000 +++ b/libpurple/protocols/msn/msn.c Sat Sep 19 03:44:25 2009 +0000 @@ -1423,7 +1423,7 @@ { PurpleBuddy * buddy = purple_find_buddy(session->account, who); gchar *buf; - buf = g_strdup_printf(_("Unable to add the buddy %s because the username is invalid. Usernames must be a valid email address."), who); + buf = g_strdup_printf(_("Unable to add the buddy %s because the username is invalid. Usernames must be valid email addresses."), who); if (!purple_conv_present_error(who, session->account, buf)) purple_notify_error(purple_account_get_connection(session->account), NULL, _("Unable to Add"), buf); g_free(buf); @@ -1513,7 +1513,7 @@ if (!purple_email_is_valid(bname)) { gchar *buf; - buf = g_strdup_printf(_("Unable to add the buddy %s because the username is invalid. Usernames must be a valid email address."), bname); + buf = g_strdup_printf(_("Unable to add the buddy %s because the username is invalid. Usernames must be valid email addresses."), bname); if (!purple_conv_present_error(bname, purple_connection_get_account(gc), buf)) purple_notify_error(gc, NULL, _("Unable to Add"), buf); g_free(buf);