| 1461 if (purple_accounts_find(username, dialog->protocol_id) != NULL) { |
1461 if (purple_accounts_find(username, dialog->protocol_id) != NULL) { |
| 1462 purple_debug_warning("gtkaccount", "Trying to add a duplicate %s account (%s).\n", |
1462 purple_debug_warning("gtkaccount", "Trying to add a duplicate %s account (%s).\n", |
| 1463 dialog->protocol_id, username); |
1463 dialog->protocol_id, username); |
| 1464 |
1464 |
| 1465 purple_notify_error(NULL, NULL, _("Unable to save new account"), |
1465 purple_notify_error(NULL, NULL, _("Unable to save new account"), |
| 1466 _("An account already exists with the specified criteria.")); |
1466 _("An account already exists with the specified criteria."), NULL); |
| 1467 |
1467 |
| 1468 g_free(username); |
1468 g_free(username); |
| 1469 return; |
1469 return; |
| 1470 } |
1470 } |
| 1471 |
1471 |