Mercurial > pidgin
comparison libpurple/protocols/oscar/oscar.c @ 15382:21bc8d84974f
I think this changes every user-visible string that contains 'Gaim.' We probably want the UI to be able
to provide a user-readable client name as well as website, as some of my re-wordings come out somewhat awkward when I force not mentioning Gaim
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 22 Jan 2007 09:27:02 +0000 |
parents | 5fe8042783c1 |
children | 42961709cb30 |
comparison
equal
deleted
inserted
replaced
15381:a2689835f54a | 15382:21bc8d84974f |
---|---|
1467 if (in != '\n') { | 1467 if (in != '\n') { |
1468 char buf[256]; | 1468 char buf[256]; |
1469 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " | 1469 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " |
1470 "this is fixed. Check %s for updates."), GAIM_WEBSITE); | 1470 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
1471 gaim_notify_warning(pos->gc, NULL, | 1471 gaim_notify_warning(pos->gc, NULL, |
1472 _("Gaim was unable to get a valid AIM login hash."), | 1472 _("Unable to get a valid AIM login hash."), |
1473 buf); | 1473 buf); |
1474 gaim_input_remove(pos->inpa); | 1474 gaim_input_remove(pos->inpa); |
1475 close(pos->fd); | 1475 close(pos->fd); |
1476 g_free(pos); | 1476 g_free(pos); |
1477 return; | 1477 return; |
1510 | 1510 |
1511 if (source < 0) { | 1511 if (source < 0) { |
1512 buf = g_strdup_printf(_("You may be disconnected shortly. You may want to use TOC until " | 1512 buf = g_strdup_printf(_("You may be disconnected shortly. You may want to use TOC until " |
1513 "this is fixed. Check %s for updates."), GAIM_WEBSITE); | 1513 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
1514 gaim_notify_warning(pos->gc, NULL, | 1514 gaim_notify_warning(pos->gc, NULL, |
1515 _("Gaim was unable to get a valid AIM login hash."), | 1515 _("Unable to get a valid AIM login hash."), |
1516 buf); | 1516 buf); |
1517 g_free(buf); | 1517 g_free(buf); |
1518 g_free(pos->modname); | 1518 g_free(pos->modname); |
1519 g_free(pos); | 1519 g_free(pos); |
1520 return; | 1520 return; |
1599 g_free(pos->modname); | 1599 g_free(pos->modname); |
1600 g_free(pos); | 1600 g_free(pos); |
1601 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. " | 1601 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. " |
1602 "Check %s for updates."), GAIM_WEBSITE); | 1602 "Check %s for updates."), GAIM_WEBSITE); |
1603 gaim_notify_warning(pos->gc, NULL, | 1603 gaim_notify_warning(pos->gc, NULL, |
1604 _("Gaim was unable to get a valid login hash."), | 1604 _("Unable to get a valid login hash."), |
1605 buf); | 1605 buf); |
1606 } | 1606 } |
1607 | 1607 |
1608 return 1; | 1608 return 1; |
1609 } | 1609 } |
4452 | 4452 |
4453 if (infolen > od->rights.maxsiglen) | 4453 if (infolen > od->rights.maxsiglen) |
4454 { | 4454 { |
4455 gchar *errstr; | 4455 gchar *errstr; |
4456 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " | 4456 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " |
4457 "has been exceeded. Gaim has truncated it for you.", | 4457 "has been exceeded. It has been truncated it for you.", |
4458 "The maximum profile length of %d bytes " | 4458 "The maximum profile length of %d bytes " |
4459 "has been exceeded. Gaim has truncated it for you.", | 4459 "has been exceeded. It has been truncated it for you.", |
4460 od->rights.maxsiglen), od->rights.maxsiglen); | 4460 od->rights.maxsiglen), od->rights.maxsiglen); |
4461 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); | 4461 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); |
4462 g_free(errstr); | 4462 g_free(errstr); |
4463 } | 4463 } |
4464 } | 4464 } |
4681 | 4681 |
4682 gaim_debug_error("oscar", "ssi: SNAC error %hu\n", reason); | 4682 gaim_debug_error("oscar", "ssi: SNAC error %hu\n", reason); |
4683 | 4683 |
4684 if (reason == 0x0005) { | 4684 if (reason == 0x0005) { |
4685 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), | 4685 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), |
4686 _("Gaim was temporarily unable to retrieve your buddy list from the AIM servers. Your buddy list is not lost, and will probably become available in a few hours.")); | 4686 _("The AIM servers were temporarily unable to send your buddy list. Your buddy list is not lost, and will probably become available in a few hours.")); |
4687 if (od->getblisttimer > 0) | 4687 if (od->getblisttimer > 0) |
4688 gaim_timeout_remove(od->getblisttimer); | 4688 gaim_timeout_remove(od->getblisttimer); |
4689 od->getblisttimer = gaim_timeout_add(30000, gaim_ssi_rerequestdata, od); | 4689 od->getblisttimer = gaim_timeout_add(30000, gaim_ssi_rerequestdata, od); |
4690 } | 4690 } |
4691 | 4691 |