comparison src/protocols/irc/dcc_send.c @ 10654:f2e86683cafc

[gaim-migrate @ 12182] sf patch #1152664, from Richard Laager This patches does three things: First, it uses aliases in file transfer messages whenever possible. Second, it fixes the case where file transfer completion messages are not showing for MSN. Third, it makes the wording more consistent: Canceled is used to describe cases when the file transfer was actively canceled by either party. Failed is used otherwise. Aborted is no longer used at all. Previously, aborted was used in some places while failed was used under the same circumstances in other places. Also, in the file transfer box, canceled was used in one place for remotely or locally canceled files while in another place in the same box canceled was only used for locally canceled files (failed was used for remotely canceled files). committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 06 Mar 2005 00:23:54 +0000
parents 761822c6f7ca
children bd8ac1d4b2f2
comparison
equal deleted inserted replaced
10653:20cbadb004a0 10654:f2e86683cafc
267 267
268 /* Create a listening socket */ 268 /* Create a listening socket */
269 sock = gaim_network_listen_range(0, 0); 269 sock = gaim_network_listen_range(0, 0);
270 270
271 if (sock < 0) { 271 if (sock < 0) {
272 gaim_notify_error(gc, NULL, _("File Transfer Aborted"), 272 gaim_notify_error(gc, NULL, _("File Transfer Failed"),
273 _("Gaim could not open a listening port.")); 273 _("Gaim could not open a listening port."));
274 gaim_xfer_cancel_local(xfer); 274 gaim_xfer_cancel_local(xfer);
275 return; 275 return;
276 } 276 }
277 277