* revert r36189, since there is no consensus for this change.

Happy Friday, everybody!

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36257 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-11-12 09:31:55 +00:00
parent 1f4b26050e
commit 2afa7eabd0
2 changed files with 3 additions and 3 deletions

View File

@ -131,7 +131,7 @@ InsetLayout Note:Greyedout
End
InsetLayout ERT
LabelString TeX
LabelString ERT
LatexType none
Decoration minimalistic
Font

View File

@ -140,9 +140,9 @@ bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
docstring const InsetERT::buttonLabel(BufferView const & bv) const
{
if (decoration() == InsetLayout::CLASSIC)
return isOpen(bv) ? _("TeX") : getNewLabel(_("TeX"));
return isOpen(bv) ? _("ERT") : getNewLabel(_("ERT"));
else
return getNewLabel(_("TeX"));
return getNewLabel(_("ERT"));
}