Mercurial > pidgin
comparison src/protocols/irc/irc.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 |
|---|---|
| 2713 ret->file_transfer_data_chunk = irc_file_transfer_data_chunk; | 2713 ret->file_transfer_data_chunk = irc_file_transfer_data_chunk; |
| 2714 ret->file_transfer_done = irc_file_transfer_done; | 2714 ret->file_transfer_done = irc_file_transfer_done; |
| 2715 ret->file_transfer_cancel =irc_file_transfer_cancel; | 2715 ret->file_transfer_cancel =irc_file_transfer_cancel; |
| 2716 | 2716 |
| 2717 puo = g_new0(struct proto_user_opt, 1); | 2717 puo = g_new0(struct proto_user_opt, 1); |
| 2718 puo->label = g_strdup("Server:"); | 2718 puo->label = g_strdup(_("Server:")); |
| 2719 puo->def = g_strdup("irc.freenode.net"); | 2719 puo->def = g_strdup("irc.freenode.net"); |
| 2720 puo->pos = USEROPT_SERV; | 2720 puo->pos = USEROPT_SERV; |
| 2721 ret->user_opts = g_list_append(ret->user_opts, puo); | 2721 ret->user_opts = g_list_append(ret->user_opts, puo); |
| 2722 | 2722 |
| 2723 puo = g_new0(struct proto_user_opt, 1); | 2723 puo = g_new0(struct proto_user_opt, 1); |
| 2724 puo->label = g_strdup("Port:"); | 2724 puo->label = g_strdup(_("Port:")); |
| 2725 puo->def = g_strdup("6667"); | 2725 puo->def = g_strdup("6667"); |
| 2726 puo->pos = USEROPT_PORT; | 2726 puo->pos = USEROPT_PORT; |
| 2727 ret->user_opts = g_list_append(ret->user_opts, puo); | 2727 ret->user_opts = g_list_append(ret->user_opts, puo); |
| 2728 | 2728 |
| 2729 puo = g_new0(struct proto_user_opt, 1); | 2729 puo = g_new0(struct proto_user_opt, 1); |
| 2730 puo->label = g_strdup("Encoding:"); | 2730 puo->label = g_strdup(_("Encoding:")); |
| 2731 puo->def = g_strdup("ISO-8859-1"); | 2731 puo->def = g_strdup("ISO-8859-1"); |
| 2732 puo->pos = USEROPT_CHARSET; | 2732 puo->pos = USEROPT_CHARSET; |
| 2733 ret->user_opts = g_list_append(ret->user_opts, puo); | 2733 ret->user_opts = g_list_append(ret->user_opts, puo); |
| 2734 | 2734 |
| 2735 my_protocol = ret; | 2735 my_protocol = ret; |
