comparison src/protocols/yahoo/yahoo.c @ 4115:474265997752

[gaim-migrate @ 4332] Nicola's Lichtmaier (niqueco) " Marked some translatable strings in the protocol plugins (mostly the configuration widgets)." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 23 Dec 2002 15:18:24 +0000
parents ee884f1d7ae3
children 511c2b63caa4
comparison
equal deleted inserted replaced
4114:fa5075168c23 4115:474265997752
1356 ret->add_buddy = yahoo_add_buddy; 1356 ret->add_buddy = yahoo_add_buddy;
1357 ret->remove_buddy = yahoo_remove_buddy; 1357 ret->remove_buddy = yahoo_remove_buddy;
1358 ret->send_typing = yahoo_send_typing; 1358 ret->send_typing = yahoo_send_typing;
1359 1359
1360 puo = g_new0(struct proto_user_opt, 1); 1360 puo = g_new0(struct proto_user_opt, 1);
1361 puo->label = g_strdup("Pager Host:"); 1361 puo->label = g_strdup(_("Pager Host:"));
1362 puo->def = g_strdup(YAHOO_PAGER_HOST); 1362 puo->def = g_strdup(YAHOO_PAGER_HOST);
1363 puo->pos = USEROPT_PAGERHOST; 1363 puo->pos = USEROPT_PAGERHOST;
1364 ret->user_opts = g_list_append(ret->user_opts, puo); 1364 ret->user_opts = g_list_append(ret->user_opts, puo);
1365 1365
1366 puo = g_new0(struct proto_user_opt, 1); 1366 puo = g_new0(struct proto_user_opt, 1);
1367 puo->label = g_strdup("Pager Port:"); 1367 puo->label = g_strdup(_("Pager Port:"));
1368 puo->def = g_strdup("5050"); 1368 puo->def = g_strdup("5050");
1369 puo->pos = USEROPT_PAGERPORT; 1369 puo->pos = USEROPT_PAGERPORT;
1370 ret->user_opts = g_list_append(ret->user_opts, puo); 1370 ret->user_opts = g_list_append(ret->user_opts, puo);
1371 1371
1372 my_protocol = ret; 1372 my_protocol = ret;