# HG changeset patch # User Sean Egan # Date 1022353104 0 # Node ID 943e2b3224a91f67f6ab7dd5b3cc1dd693f98ca9 # Parent a0676e830051f99391116b0457b851cb2a56bdd3 [gaim-migrate @ 3291] more de-aim-ization, and a buddy pounce fix. committer: Tailor Script diff -r a0676e830051 -r 943e2b3224a9 src/about.c --- a/src/about.c Fri May 24 00:03:14 2002 +0000 +++ b/src/about.c Sat May 25 18:58:24 2002 +0000 @@ -132,8 +132,9 @@ label = gtk_label_new( - _("Gaim is a client that supports AOL's Instant Messenger protocol. It is written\n" - "using Gtk+ and is licensed under the GPL.\n\n" "URL: " WEBSITE "\n\n" + _("Gaim is a modular Instant Messaging client capable of using AIM, ICQ,\n" + "Yahoo!, MSN, IRC, Jabber, Napster, Zephyr, and Gadu-Gadu all at once.\n" + "I is written using Gtk+ and is licensed under the GPL.\n\n" "URL: " WEBSITE "\n\n" "IRC: #gaim on irc.openprojects.net")); gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); diff -r a0676e830051 -r 943e2b3224a9 src/buddy.c --- a/src/buddy.c Fri May 24 00:03:14 2002 +0000 +++ b/src/buddy.c Sat May 25 18:58:24 2002 +0000 @@ -1607,9 +1607,9 @@ * because I thought it'd be funny :-) */ g_snprintf(tmp, sizeof(tmp), "%s has %s", name, - (b->options & OPT_POUNCE_TYPING) ? "started typing to you" : - (b->options & OPT_POUNCE_SIGNON) ? "signed on" : - (b->options & OPT_POUNCE_UNIDLE) ? "returned from being idle" : + (when & OPT_POUNCE_TYPING) ? "started typing to you" : + (when & OPT_POUNCE_SIGNON) ? "signed on" : + (when & OPT_POUNCE_UNIDLE) ? "returned from being idle" : "returned from being away"); do_error_dialog(tmp, _("Buddy Pounce"));