Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv10295/protocols/oscar
Modified Files:
oscar.c
Log Message:
You missed 2 messages from they were because EWarmenhoven too large.
Index: oscar.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- oscar.c 2001/10/04 19:36:49 1.44
+++ oscar.c 2001/10/05 20:01:22 1.45
@@ -1447,8 +1447,8 @@
_("You missed %d message%s from %s because %s invalid."),
nummissed,
nummissed == 1 ? "" : "s",
- nummissed == 1 ? "it was" : "they were",
- userinfo->sn);
+ userinfo->sn,
+ nummissed == 1 ? "it was" : "they were");
break;
case 1:
/* Message too large */
@@ -1457,8 +1457,8 @@
_("You missed %d message%s from %s because %s too large."),
nummissed,
nummissed == 1 ? "" : "s",
- nummissed == 1 ? "it was" : "they were",
- userinfo->sn);
+ userinfo->sn,
+ nummissed == 1 ? "it was" : "they were");
break;
case 2:
/* Rate exceeded */
|