From: Sean E. <sea...@us...> - 2002-04-15 03:23:14
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv30822/src Modified Files: prpl.c Log Message: Patches by Max Horn, Nathan Walp and Danny Colascione. Thanks, guys. Index: prpl.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/prpl.c,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- prpl.c 13 Mar 2002 04:16:05 -0000 1.52 +++ prpl.c 15 Apr 2002 03:23:09 -0000 1.53 @@ -561,7 +561,7 @@ ga->who = g_strdup(who); ga->alias = alias ? g_strdup(alias) : NULL; - g_snprintf(buf, sizeof(buf), _("%s%s%s%s has made %s their buddy%s%s%s"), + g_snprintf(buf, sizeof(buf), _("%s%s%s%s has made %s his or her buddy%s%s%s"), who, alias ? " (" : "", alias ? alias : "", @@ -569,7 +569,7 @@ id ? id : gc->displayname[0] ? gc->displayname : gc->username, msg ? ": " : ".", msg ? msg : "", - find_buddy(gc, ga->who) ? "" : _("\n\nDo you wish to add them to your buddy list?")); + find_buddy(gc, ga->who) ? "" : _("\n\nDo you wish to add him or her to your buddy list?")); if (find_buddy(gc, ga->who)) do_error_dialog(buf, "Added to List"); else |