Improve error msg

This commit is contained in:
Juergen Spitzmueller 2017-12-25 12:22:45 +01:00
parent 54846d2d93
commit 69f41b54b8

View File

@ -1706,6 +1706,15 @@ bool Buffer::makeLaTeXFile(FileName const & fname,
docstring const failed(1, e.failed_char);
ostringstream oss;
oss << "0x" << hex << e.failed_char << dec;
if (getParFromID(e.par_id).paragraph().layout().pass_thru) {
docstring msg = bformat(_("Uncodable character '%1$s'"
" (code point %2$s)"),
failed, from_utf8(oss.str()));
errorList.push_back(ErrorItem(msg, _("Some characters of your document are not "
"representable in specific verbatim contexts.\n"
"Changing the document encoding to utf8 could help."),
{e.par_id, e.pos}, {e.par_id, e.pos + 1}));
} else {
docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
" (code point %2$s)"),
failed, from_utf8(oss.str()));
@ -1713,6 +1722,7 @@ bool Buffer::makeLaTeXFile(FileName const & fname,
"representable in the chosen encoding.\n"
"Changing the document encoding to utf8 could help."),
{e.par_id, e.pos}, {e.par_id, e.pos + 1}));
}
failed_export = true;
}
catch (iconv_codecvt_facet_exception const & e) {