comparison libpurple/protocols/silc/pk.c @ 20598:285bb637a2b7

Updated hinting to be less invasive
author Gabriel Schulhof <nix@go-nix.ca>
date Sat, 22 Sep 2007 16:19:34 +0000
parents 980a104267da
children 8c9aad9479c0
comparison
equal deleted inserted replaced
20597:591267f6f1d5 20598:285bb637a2b7
105 } 105 }
106 g_snprintf(tmp2, sizeof(tmp2), 106 g_snprintf(tmp2, sizeof(tmp2),
107 _("Fingerprint and babbleprint for the %s key are:\n\n" 107 _("Fingerprint and babbleprint for the %s key are:\n\n"
108 "%s\n%s\n"), entity, fingerprint, babbleprint); 108 "%s\n%s\n"), entity, fingerprint, babbleprint);
109 109
110 purple_request_action(gc, _("Verify Public Key"), tmp, tmp2, 110 purple_request_action_with_hint(gc, _("Verify Public Key"), tmp, tmp2,
111 PURPLE_DEFAULT_ACTION_NONE, 111 PURPLE_DEFAULT_ACTION_NONE,
112 purple_connection_get_account(gc), entity, NULL, verify, 3, 112 purple_connection_get_account(gc), entity, NULL, "blist", verify, 3,
113 _("Yes"), G_CALLBACK(silcpurple_verify_cb), 113 _("Yes"), G_CALLBACK(silcpurple_verify_cb),
114 _("No"), G_CALLBACK(silcpurple_verify_cb), 114 _("No"), G_CALLBACK(silcpurple_verify_cb),
115 _("_View..."), G_CALLBACK(silcpurple_verify_details)); 115 _("_View..."), G_CALLBACK(silcpurple_verify_details));
116 } 116 }
117 117