Generate a proper error dialog title for XeTeX/LuaTeX

(see bug #10013)

Candidate for stable
This commit is contained in:
Juergen Spitzmueller 2016-07-10 11:14:03 +02:00
parent 5198fdfc0b
commit 90e337c84d
2 changed files with 5 additions and 1 deletions

View File

@ -46,7 +46,9 @@ string const guiErrorType(string const & s)
return N_("Literate");
else if (s == "platex")
return N_("pLaTeX");
else if (s == "latex")
else if (s == "latex" || "xetex")
// All LaTeX variants except pLaTeX
// (LaTeX, PDFLaTeX, XeTeX, LuaTeX)
return N_("LaTeX");
return s;
}

View File

@ -168,6 +168,8 @@ What's new
- Accessibility of the document class selector from keyboard (bug 10035).
- Fix title of LuaTeX and XeTeX error dialogs (part of bug 10013).
* INTERNALS