Add missing error message.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7716 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2002-12-24 01:58:11 +00:00
parent e3ca297efb
commit 5693b12b80

View File

@ -170,6 +170,11 @@ show_session_error (GNCBackendError io_error, const char *newfile)
if (gnc_verify_dialog (TRUE, fmt)) { uh_oh = FALSE; }
break;
case ERR_FILEIO_PARSE_ERROR:
fmt = _("There was an error parsing the file \n %s\n");
gnc_error_dialog (fmt, newfile);
break;
case ERR_FILEIO_FILE_EMPTY:
fmt = _("The file \n %s\n is empty.");
gnc_error_dialog (fmt, newfile);