comparison libpurple/protocols/oscar/family_oservice.c @ 29384:ad4960c2df28

Good call, this doesn't need to be translated. This messaged used to be shown to users, but now that we throttle outgoing messages to avoid hitting the rate limit, we don't bother showing this for some reason. I think it was annoying people and causing confusion. But it really should happen rarely if ever, so I think it's safe to keep it as a debug message and not translate it.
author Mark Doliner <mark@kingant.net>
date Sun, 07 Feb 2010 08:31:41 +0000
parents 4d50162d809e
children ab168cf2713e
comparison
equal deleted inserted replaced
29380:1b040b79da38 29384:ad4960c2df28
522 rateclass->current, rateclass->max, rateclass->alert, 522 rateclass->current, rateclass->max, rateclass->alert,
523 rateclass->clear, rateclass->limit, rateclass->disconnect, 523 rateclass->clear, rateclass->limit, rateclass->disconnect,
524 delta, rateclass->dropping_snacs, rateclass->windowsize); 524 delta, rateclass->dropping_snacs, rateclass->windowsize);
525 525
526 if (code == AIM_RATE_CODE_LIMIT) { 526 if (code == AIM_RATE_CODE_LIMIT) {
527 purple_debug_warning("oscar", _("The last action you attempted " 527 purple_debug_warning("oscar", "The last action you attempted "
528 "could not be performed because you are over the rate " 528 "could not be performed because you are over the rate "
529 "limit. Please wait 10 seconds and try again.\n")); 529 "limit. Please wait 10 seconds and try again.\n");
530 } 530 }
531 531
532 return 1; 532 return 1;
533 } 533 }
534 534