Mercurial > pidgin
comparison src/protocols/toc/toc.c @ 13705:2f7b356812bc
[gaim-migrate @ 16108]
Bj?rn mentioned on gaim-i18n that we use a lot of similar terms for Server in the account options. I've normalized them. I'm not 100% satisfied with the Yahoo ones, but I did what I could.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sat, 29 Apr 2006 20:47:20 +0000 |
| parents | cfc2f7fcb3dd |
| children | 54147aa1ffe6 |
comparison
equal
deleted
inserted
replaced
| 13704:1a1248de26ed | 13705:2f7b356812bc |
|---|---|
| 2335 static void | 2335 static void |
| 2336 init_plugin(GaimPlugin *plugin) | 2336 init_plugin(GaimPlugin *plugin) |
| 2337 { | 2337 { |
| 2338 GaimAccountOption *option; | 2338 GaimAccountOption *option; |
| 2339 | 2339 |
| 2340 option = gaim_account_option_string_new(_("TOC host"), "server", TOC_HOST); | 2340 option = gaim_account_option_string_new(_("Server"), "server", TOC_HOST); |
| 2341 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | 2341 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 2342 option); | 2342 option); |
| 2343 | 2343 |
| 2344 option = gaim_account_option_int_new(_("TOC port"), "port", TOC_PORT); | 2344 option = gaim_account_option_int_new(_("Port"), "port", TOC_PORT); |
| 2345 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, | 2345 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 2346 option); | 2346 option); |
| 2347 | 2347 |
| 2348 my_protocol = plugin; | 2348 my_protocol = plugin; |
| 2349 } | 2349 } |
