From: Uwe Stöhr Date: Sun, 7 Nov 2010 15:31:05 +0000 (+0000) Subject: stdinsets.inc, InsetERT.cpp: change "ERT" to "TeX" to be consistent - the documentati... X-Git-Tag: 2.0.0~1934 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e94a9732b1393b8f2f2be211ec7258947b6f2259;p=features.git 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 --- diff --git a/lib/layouts/stdinsets.inc b/lib/layouts/stdinsets.inc index 9b4bae8d69..1c101b8218 100644 --- a/lib/layouts/stdinsets.inc +++ b/lib/layouts/stdinsets.inc @@ -131,7 +131,7 @@ InsetLayout Note:Greyedout End InsetLayout ERT - LabelString ERT + LabelString TeX LatexType none Decoration minimalistic Font diff --git a/src/insets/InsetERT.cpp b/src/insets/InsetERT.cpp index 2b6c8b7c6a..1a3b2a9ae4 100644 --- a/src/insets/InsetERT.cpp +++ b/src/insets/InsetERT.cpp @@ -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")); }