git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@28208 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-01-17 13:56:59 +00:00
parent e941980eed
commit c38fe91fbe
2 changed files with 3 additions and 3 deletions

View File

@ -1613,7 +1613,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
LYXERR(Debug::LYXVC, "Directory: " << path);
FileName pp(path);
if (!pp.isReadableDirectory()) {
lyxerr<< _("Directory is not readable.\n");
lyxerr << _("Directory is not accessible.") << endl;
break;
}
support::PathChanger p(pp);

View File

@ -104,9 +104,9 @@ static QString version()
loc_release_date = toqstr(lyx_release_date);
}
docstring version_date =
bformat(_("LyX Version %1$s\n(%2$s)\n\n"),
bformat(_("LyX Version %1$s\n(%2$s)"),
from_ascii(lyx_version),
qstring_to_ucs4(loc_release_date));
qstring_to_ucs4(loc_release_date))+"\n\n";
QString res;
QTextStream out(&res);
out << toqstr(version_date);