From 6acdda13e9cc09b554238aa38082a94c804c702b Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Wed, 30 May 2007 20:57:17 +0000 Subject: [PATCH] * src/insets/InsetListingsParams.cpp: fix message: "latex" => "LaTeX" git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18581 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetListingsParams.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetListingsParams.cpp b/src/insets/InsetListingsParams.cpp index 003fe876f0..91e3ab398a 100644 --- a/src/insets/InsetListingsParams.cpp +++ b/src/insets/InsetListingsParams.cpp @@ -162,10 +162,10 @@ docstring ListingsParam::validate(string const & par) const if (!hint_.empty()) return hint_; else - return _("Please specify a latex length expression."); + return _("Please specify a LaTeX length expression."); } if (!isValidLength(par2)) - return _("Invalid latex length expression."); + return _("Invalid LaTeX length expression."); if (unclosed) return _("Unbalanced braces!"); return docstring();