* frontends/qt4/GuiWorkArea.C: make "unknown version" translateable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15983 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2006-11-19 13:35:16 +00:00
parent 7dc674a7aa
commit 946ede62d0

View File

@ -18,6 +18,7 @@
#include "QLyXKeySym.h"
#include "qt_helpers.h"
#include "gettext.h"
#include "LyXView.h"
#include "BufferView.h"
@ -529,7 +530,7 @@ void GuiWorkArea::doGreyOut(QLPainter & pain)
// return;
lyxerr << "show banner: " << lyxrc.show_banner << endl;
/// The text to be written on top of the pixmap
string const text = lyx_version ? lyx_version : "unknown";
QString const text = lyx_version ? QString(lyx_version) : qt_("unknown version");
string const file = support::libFileSearch("images", "banner", "ppm");
if (file.empty())
return;
@ -559,7 +560,7 @@ void GuiWorkArea::doGreyOut(QLPainter & pain)
pain.setPen(QColor(255, 255, 0));
pain.setFont(font);
pain.drawText(x, y, toqstr(text));
pain.drawText(x, y, text);
}