stdinsets.inc, InsetERT.cpp: change "ERT" to "TeX" to be consistent - the documentation and all other menus use consequently since LyX 1.6.0 "TeX-code" because it turned out that ERT is a meaningless abbreviation for new users

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36189 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2010-11-07 15:31:05 +00:00
parent 79e908e9c8
commit e94a9732b1
2 changed files with 3 additions and 3 deletions

View File

@ -131,7 +131,7 @@ InsetLayout Note:Greyedout
End
InsetLayout ERT
LabelString ERT
LabelString TeX
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) ? _("ERT") : getNewLabel(_("ERT"));
return isOpen(bv) ? _("TeX") : getNewLabel(_("TeX"));
else
return getNewLabel(_("ERT"));
return getNewLabel(_("TeX"));
}