Mercurial > pidgin
changeset 28280:77a007e0de1f
Concordance between "Usernames" and "addresses"
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sat, 19 Sep 2009 03:44:25 +0000 |
parents | 126251d39bcc |
children | 5f97830906bc |
files | libpurple/protocols/msn/msn.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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);