Change strings

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25794 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-07-22 10:16:30 +00:00
parent d4b9c97555
commit 6a9c45b50b
2 changed files with 3 additions and 3 deletions

View File

@ -173,8 +173,8 @@ void LyXVC::revert()
docstring const file = owner_->fileName().displayName(20);
docstring text = bformat(_("Reverting to the stored version of the "
"document %1$s will lose all current changes.\n\n"
"Do you want to revert to the saved version?"), file);
"document %1$s will lose all current changes.\n\n"
"Do you want to revert to the older version?"), file);
int const ret = Alert::prompt(_("Revert to stored version of document?"),
text, 0, 1, _("&Revert"), _("&Cancel"));

View File

@ -44,7 +44,7 @@ int VCS::doVCCommand(string const & cmd, FileName const & path)
int const ret = one.startscript(Systemcall::Wait, cmd);
if (ret)
frontend::Alert::error(_("Revision control error."),
bformat(_("Please check you have installed the program called in\n"
bformat(_("Some problem occured while running the command:\n"
"'%1$s'."),
from_ascii(cmd)));
return ret;