Fix old error string in Cases

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@20109 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2007-09-06 18:03:04 +00:00
parent 4c43b3465f
commit e1cdcc86e4

View File

@ -95,7 +95,7 @@ bool InsetMathCases::getStatus(Cursor & cur, FuncRequest const & cmd,
if (s == "add-vline-left" || s == "add-vline-right") {
flag.enabled(false);
flag.message(bformat(
from_utf8(N_("No vertical grid lines in '%1$s'")),
from_utf8(N_("No vertical grid lines in 'cases': feature %1$s")),
s));
return true;
}