| 884 gchar *title, *msg; |
884 gchar *title, *msg; |
| 885 title = g_strdup_printf(_("Error Reading %s"), filename); |
885 title = g_strdup_printf(_("Error Reading %s"), filename); |
| 886 msg = g_strdup_printf(_("An error was encountered reading your " |
886 msg = g_strdup_printf(_("An error was encountered reading your " |
| 887 "%s. The file has not been loaded, and the old file " |
887 "%s. The file has not been loaded, and the old file " |
| 888 "has been renamed to %s~."), description, filename_full); |
888 "has been renamed to %s~."), description, filename_full); |
| 889 purple_notify_error(NULL, NULL, title, msg); |
889 purple_notify_error(NULL, NULL, title, msg, NULL); |
| 890 g_free(title); |
890 g_free(title); |
| 891 g_free(msg); |
891 g_free(msg); |
| 892 } |
892 } |
| 893 |
893 |
| 894 g_free(filename_full); |
894 g_free(filename_full); |