From: Stephan Witt Date: Mon, 1 Nov 2010 07:03:47 +0000 (+0000) Subject: correct the gettext context for the format of the displayed error message for unknown... X-Git-Tag: 2.0.0~2147 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=17b3e303351d5701b31cee377d1c9452b1d30c4d;p=lyx.git correct the gettext context for the format of the displayed error message for unknown vcs buffer-info insets git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35961 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetInfo.cpp b/src/insets/InsetInfo.cpp index 6fee48de2f..0ec533b457 100644 --- a/src/insets/InsetInfo.cpp +++ b/src/insets/InsetInfo.cpp @@ -438,7 +438,7 @@ void InsetInfo::updateInfo() itype = LyXVC::Date; string binfo = buffer().lyxvc().revisionInfo(itype); if (binfo.empty()) { - docstring fmt = _("%1$s unknown[[InsetNote]]"); + docstring fmt = _("%1$s unknown[[InsetInfo]]"); setText(bformat(fmt, from_utf8(name_))); } else setText(from_utf8(binfo));