# HG changeset patch # User Eric Warmenhoven # Date 964142498 0 # Node ID 44123888a9410493e008b8ce72091f4db6dfb822 # Parent eaddaa0dbbcb787a380a139f5c4a14d57ecd135a [gaim-migrate @ 524] whoops. formatting. i forgot. committer: Tailor Script diff -r eaddaa0dbbcb -r 44123888a941 src/buddy.c --- a/src/buddy.c Fri Jul 21 01:16:55 2000 +0000 +++ b/src/buddy.c Fri Jul 21 01:21:38 2000 +0000 @@ -1453,22 +1453,22 @@ if (bit & caps) { switch (bit) { case AIM_CAPS_BUDDYICON: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sBuddy Icon"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sBuddy Icon"), count ? ", " : ""); break; case AIM_CAPS_VOICE: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sVoice"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sVoice"), count ? ", " : ""); break; case AIM_CAPS_IMIMAGE: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sIM Image"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sIM Image"), count ? ", " : ""); break; case AIM_CAPS_CHAT: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sChat"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sChat"), count ? ", " : ""); break; case AIM_CAPS_GETFILE: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sGet File"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sGet File"), count ? ", " : ""); break; case AIM_CAPS_SENDFILE: - i += g_snprintf(buf + i, sizeof(buf) - i, _("%sSend File"), count ? "," : ""); + i += g_snprintf(buf + i, sizeof(buf) - i, _("%sSend File"), count ? ", " : ""); break; } count++; @@ -1533,7 +1533,7 @@ } else caps[0] = '\0'; - i = g_snprintf(infotip, sizeof(infotip), _("Name: %s \nLogged in: %s\n%s%s%s\n%s"), b->name, sotime, warn, ((b->idle) ? _("Idle: ") : ""), itime, caps); + i = g_snprintf(infotip, sizeof(infotip), _("Name: %s \nLogged in: %s\n%s%s%s%s%s"), b->name, sotime, warn, ((b->idle) ? _("Idle: ") : ""), itime, ((b->idle) ? "\n" : ""), caps); gtk_tooltips_set_tip(tips, GTK_WIDGET(b->item), infotip, "");