comparison src/connection.c @ 10573:2d809781816f

[gaim-migrate @ 11964] Methinks this should have a title. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 04 Feb 2005 23:42:33 +0000
parents 6feef0a9098a
children 55af3fa46329
comparison
equal deleted inserted replaced
10572:ed2b8b432525 10573:2d809781816f
180 gaim_debug_info("connection", "Requesting password\n"); 180 gaim_debug_info("connection", "Requesting password\n");
181 gaim_connection_destroy(gc); 181 gaim_connection_destroy(gc);
182 escaped = g_markup_escape_text(username, strlen(username)); 182 escaped = g_markup_escape_text(username, strlen(username));
183 primary = g_strdup_printf(_("Enter password for %s (%s)"), escaped, 183 primary = g_strdup_printf(_("Enter password for %s (%s)"), escaped,
184 gaim_account_get_protocol_name(account)); 184 gaim_account_get_protocol_name(account));
185 gaim_request_input(gc, NULL, primary, NULL, NULL, FALSE, TRUE, NULL, 185 gaim_request_input(gc, _("Enter Password"), primary, NULL, NULL,
186 FALSE, TRUE, NULL,
186 _("OK"), G_CALLBACK(request_pass_ok_cb), 187 _("OK"), G_CALLBACK(request_pass_ok_cb),
187 _("Cancel"), NULL, account); 188 _("Cancel"), NULL, account);
188 g_free(primary); 189 g_free(primary);
189 g_free(escaped); 190 g_free(escaped);
190 191