From d3e62cfe31fd15ce8e96db10228ced73f0deebcd Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 29 Jul 2008 13:25:07 +0000 Subject: [PATCH] Better string. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25978 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiView.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 85dae92018..5d7a9fc7fe 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -1326,7 +1326,8 @@ void GuiView::openDocument(string const & fname) buf->errors("Parse"); str2 = bformat(_("Document %1$s opened."), disp_fn); if (buf->lyxvc().inUse()) - str2 += " " + _("Version control detected, enabling VCS support."); + str2 += " " + from_utf8(buf->lyxvc().versionString()) + + " " + _("Version control detected."); } else { str2 = bformat(_("Could not open document %1$s"), disp_fn); }