comparison src/protocols/napster/napster.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 1b8261f374ea
children 9d1a984681fe
comparison
equal deleted inserted replaced
7980:bcf186e78a56 7981:ad5c8f01882b
458 close(source); 458 close(source);
459 return; 459 return;
460 } 460 }
461 461
462 if (source < 0) { 462 if (source < 0) {
463 gaim_connection_error(gc, _("Unable to connect")); 463 gaim_connection_error(gc, _("Unable to connect."));
464 return; 464 return;
465 } 465 }
466 466
467 ndata->fd = source; 467 ndata->fd = source;
468 468
489 gc->proto_data = g_new0(struct nap_data, 1); 489 gc->proto_data = g_new0(struct nap_data, 1);
490 if (gaim_proxy_connect(account, 490 if (gaim_proxy_connect(account,
491 gaim_account_get_string(account, "server", NAP_SERVER), 491 gaim_account_get_string(account, "server", NAP_SERVER),
492 gaim_account_get_int(account, "port", NAP_PORT), 492 gaim_account_get_int(account, "port", NAP_PORT),
493 nap_login_connect, gc) != 0) { 493 nap_login_connect, gc) != 0) {
494 gaim_connection_error(gc, _("Unable to connect")); 494 gaim_connection_error(gc, _("Unable to connect."));
495 } 495 }
496 } 496 }
497 497
498 static void nap_close(GaimConnection *gc) 498 static void nap_close(GaimConnection *gc)
499 { 499 {