From a3a5afe1198266e7c4a1bc6dd8f65062426b24c4 Mon Sep 17 00:00:00 2001 From: Jan Dalheimer Date: Sun, 2 Nov 2014 19:24:28 +0100 Subject: Fix #231: Enable translation for more strings --- logic/LwjglVersionList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logic/LwjglVersionList.cpp') diff --git a/logic/LwjglVersionList.cpp b/logic/LwjglVersionList.cpp index 84aaf03d..11c1e0aa 100644 --- a/logic/LwjglVersionList.cpp +++ b/logic/LwjglVersionList.cpp @@ -57,10 +57,10 @@ QVariant LWJGLVersionList::headerData(int section, Qt::Orientation orientation, switch (role) { case Qt::DisplayRole: - return "Version"; + return tr("Version"); case Qt::ToolTipRole: - return "LWJGL version name."; + return tr("LWJGL version name."); default: return QVariant(); -- cgit