| 1415 /* Are we dealing with a directory? */ |
1415 /* Are we dealing with a directory? */ |
| 1416 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
1416 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
| 1417 char *str, *str2; |
1417 char *str, *str2; |
| 1418 |
1418 |
| 1419 str = g_strdup_printf(_("Cannot send folder %s."), basename); |
1419 str = g_strdup_printf(_("Cannot send folder %s."), basename); |
| 1420 str2 = g_strdup_printf(_("%s cannot transfer a folder. You will need to send the files within individually"), PIDGIN_NAME); |
1420 str2 = g_strdup_printf(_("%s cannot transfer a folder. You will need to send the files within individually."), PIDGIN_NAME); |
| 1421 |
1421 |
| 1422 purple_notify_error(NULL, NULL, |
1422 purple_notify_error(NULL, NULL, |
| 1423 str, str2); |
1423 str, str2); |
| 1424 |
1424 |
| 1425 g_free(str); |
1425 g_free(str); |