Revision: 17496
http://svn.sourceforge.net/gaim/?rev=17496&view=rev
Author: thekingant
Date: 2006-10-17 07:16:46 -0700 (Tue, 17 Oct 2006)
Log Message:
-----------
Better error messages, in my opinion. Now we don't need
to worry about defuzzing anything...
Modified Paths:
--------------
trunk/libgaim/protocols/qq/send_file.c
Modified: trunk/libgaim/protocols/qq/send_file.c
===================================================================
--- trunk/libgaim/protocols/qq/send_file.c 2006-10-17 08:13:41 UTC (rev 17495)
+++ trunk/libgaim/protocols/qq/send_file.c 2006-10-17 14:16:46 UTC (rev 17496)
@@ -703,10 +703,8 @@
return;
}
filename = strrchr(gaim_xfer_get_local_filename(qd->xfer), '/') + 1;
- msg = g_strdup_printf
- (_
- ("Your request to send file[%s] has been rejected by buddy[%d]"),
- filename, sender_uid);
+ msg = g_strdup_printf(_("%d has declined the file %s"),
+ sender_uid, filename);
gaim_notify_warning (gc, _("File Send"), msg, NULL);
gaim_xfer_request_denied(qd->xfer);
@@ -734,8 +732,8 @@
}
filename = strrchr(gaim_xfer_get_local_filename(qd->xfer), '/') + 1;
msg = g_strdup_printf
- (_("The sending process of file[%s] has been canceled by buddy[%d]"),
- filename, sender_uid);
+ (_("%d canceled the transfer of %s"),
+ sender_uid, filename);
gaim_notify_warning (gc, _("File Send"), msg, NULL);
gaim_xfer_cancel_remote(qd->xfer);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|