comparison src/ft.c @ 11231:64e2c65ef650

[gaim-migrate @ 13371] I think this was wrong. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 11 Aug 2005 04:39:53 +0000
parents bd8ac1d4b2f2
children 920a37a4c1be
comparison
equal deleted inserted replaced
11230:11b43807d6a6 11231:64e2c65ef650
1076 if (buddy) 1076 if (buddy)
1077 who = gaim_buddy_get_alias(buddy); 1077 who = gaim_buddy_get_alias(buddy);
1078 } 1078 }
1079 1079
1080 if (type == GAIM_XFER_SEND) 1080 if (type == GAIM_XFER_SEND)
1081 title = g_strdup_printf(_("File transfer to %s failed.\n"), who); 1081 title = g_strdup_printf(_("File transfer to %s failed."), who);
1082 else 1082 else
1083 title = g_strdup_printf(_("File transfer from %s failed.\n"), who); 1083 title = g_strdup_printf(_("File transfer from %s failed."), who);
1084 1084
1085 gaim_notify_error(NULL, NULL, title, msg); 1085 gaim_notify_error(NULL, NULL, title, msg);
1086 1086
1087 g_free(title); 1087 g_free(title);
1088 } 1088 }