Mercurial > pidgin.yaz
comparison src/protocols/silc/buddy.c @ 8891:4f7c365c5c5a
[gaim-migrate @ 9660]
i18n fixes for SILC from Ambrose Li and ?ric Boumaour.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 06 May 2004 12:17:17 +0000 |
parents | 50d0f76639e7 |
children | 26c9b8761707 |
comparison
equal
deleted
inserted
replaced
8890:6c98b883580a | 8891:4f7c365c5c5a |
---|---|
1074 clients[i]->username, clients[i]->hostname ? | 1074 clients[i]->username, clients[i]->hostname ? |
1075 clients[i]->hostname : ""); | 1075 clients[i]->hostname : ""); |
1076 gaim_request_field_list_add(f, tmp, clients[i]); | 1076 gaim_request_field_list_add(f, tmp, clients[i]); |
1077 } | 1077 } |
1078 | 1078 |
1079 g_snprintf(tmp, sizeof(tmp), | |
1080 _("More than one users were found with the same %s. Select " | |
1081 "the correct user from the list to add to the buddy list."), | |
1082 r->pubkey_search ? "public key" : "name"); | |
1083 gaim_request_fields(NULL, _("Add Buddy"), | 1079 gaim_request_fields(NULL, _("Add Buddy"), |
1084 _("Select correct user"), tmp, fields, | 1080 _("Select correct user"), |
1085 "OK", G_CALLBACK(silcgaim_add_buddy_select_cb), | 1081 r->pubkey_search |
1086 "Cancel", G_CALLBACK(silcgaim_add_buddy_select_cancel), r); | 1082 ? _("More than one user was found with the same public key. Select " |
1083 "the correct user from the list to add to the buddy list.") | |
1084 : _("More than one user was found with the same name. Select " | |
1085 "the correct user from the list to add to the buddy list."), | |
1086 fields, | |
1087 _("OK"), G_CALLBACK(silcgaim_add_buddy_select_cb), | |
1088 _("Cancel"), G_CALLBACK(silcgaim_add_buddy_select_cancel), r); | |
1087 } | 1089 } |
1088 | 1090 |
1089 static void | 1091 static void |
1090 silcgaim_add_buddy_resolved(SilcClient client, | 1092 silcgaim_add_buddy_resolved(SilcClient client, |
1091 SilcClientConnection conn, | 1093 SilcClientConnection conn, |