mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 01:08:45 +00:00
* GuiErrorList.cpp: following André's advice.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@33421 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b17d1a820f
commit
678ace1244
@ -33,15 +33,15 @@ using namespace lyx::support;
|
||||
|
||||
namespace {
|
||||
|
||||
string const guiErrorType(string const s)
|
||||
string const guiErrorType(string const & s)
|
||||
{
|
||||
if (s == "docbook")
|
||||
return N_("DocBook");
|
||||
else if (s == "literate")
|
||||
if (s == "literate")
|
||||
return N_("Literate");
|
||||
else if (s == "platex")
|
||||
if (s == "platex")
|
||||
return N_("pLaTeX");
|
||||
else if (s == "latex")
|
||||
if (s == "latex")
|
||||
return N_("LaTeX");
|
||||
return s;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user