Mercurial > pidgin
comparison src/protocols/oscar/oscar.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 | 8369120556bc |
children | f65e8d30ae53 |
comparison
equal
deleted
inserted
replaced
13704:1a1248de26ed | 13705:2f7b356812bc |
---|---|
6452 static void | 6452 static void |
6453 init_plugin(GaimPlugin *plugin) | 6453 init_plugin(GaimPlugin *plugin) |
6454 { | 6454 { |
6455 GaimAccountOption *option; | 6455 GaimAccountOption *option; |
6456 | 6456 |
6457 option = gaim_account_option_string_new(_("Auth host"), "server", OSCAR_DEFAULT_LOGIN_SERVER); | 6457 option = gaim_account_option_string_new(_("Server"), "server", OSCAR_DEFAULT_LOGIN_SERVER); |
6458 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | 6458 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
6459 | 6459 |
6460 option = gaim_account_option_int_new(_("Auth port"), "port", OSCAR_DEFAULT_LOGIN_PORT); | 6460 option = gaim_account_option_int_new(_("Port"), "port", OSCAR_DEFAULT_LOGIN_PORT); |
6461 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | 6461 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
6462 | 6462 |
6463 option = gaim_account_option_string_new(_("Encoding"), "encoding", OSCAR_DEFAULT_CUSTOM_ENCODING); | 6463 option = gaim_account_option_string_new(_("Encoding"), "encoding", OSCAR_DEFAULT_CUSTOM_ENCODING); |
6464 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | 6464 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
6465 | 6465 |