Better string.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25978 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-07-29 13:25:07 +00:00
parent ff80da000e
commit d3e62cfe31

View File

@ -1326,7 +1326,8 @@ void GuiView::openDocument(string const & fname)
buf->errors("Parse"); buf->errors("Parse");
str2 = bformat(_("Document %1$s opened."), disp_fn); str2 = bformat(_("Document %1$s opened."), disp_fn);
if (buf->lyxvc().inUse()) if (buf->lyxvc().inUse())
str2 += " " + _("Version control detected, enabling VCS support."); str2 += " " + from_utf8(buf->lyxvc().versionString()) +
" " + _("Version control detected.");
} else { } else {
str2 = bformat(_("Could not open document %1$s"), disp_fn); str2 = bformat(_("Could not open document %1$s"), disp_fn);
} }