comparison src/protocols/irc/parse.c @ 7981:ad5c8f01882b

[gaim-migrate @ 8658] "I have updated the German translation and changed some i18n strings. i18n44.patch contains: - updated German translation - changed some 99% identical strings which differ only in spelling, for instance: _("Unable to connect") and _("Unable to connect.") This reduces some translation strings and makes the UI a bit more clear." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 03 Jan 2004 16:22:44 +0000
parents 828856b7fe30
children 7a6e30eb7aad
comparison
equal deleted inserted replaced
7980:bcf186e78a56 7981:ad5c8f01882b
387 msg = irc_format(irc, "vv", "PONG", input + 5); 387 msg = irc_format(irc, "vv", "PONG", input + 5);
388 irc_send(irc, msg); 388 irc_send(irc, msg);
389 g_free(msg); 389 g_free(msg);
390 return; 390 return;
391 } else if (!strncmp(input, "ERROR ", 6)) { 391 } else if (!strncmp(input, "ERROR ", 6)) {
392 gaim_connection_error(gaim_account_get_connection(irc->account), _("Disconnected")); 392 gaim_connection_error(gaim_account_get_connection(irc->account), _("Disconnected."));
393 return; 393 return;
394 } 394 }
395 395
396 if (input[0] != ':' || (cur = strchr(input, ' ')) == NULL) { 396 if (input[0] != ':' || (cur = strchr(input, ' ')) == NULL) {
397 irc_parse_error_cb(irc, input); 397 irc_parse_error_cb(irc, input);