From ccd840dd8911e66791240c0d6c88ec0ffa18d559 Mon Sep 17 00:00:00 2001 From: spacy51 Date: Sat, 9 Feb 2008 22:41:05 +0000 Subject: [PATCH] Qt: MINOR translation changes --- lang/german.ts | 12 +++++++++--- src/qt/MainWnd.cpp | 4 ++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/lang/german.ts b/lang/german.ts index 36a8844e..ee90434a 100644 --- a/lang/german.ts +++ b/lang/german.ts @@ -1,9 +1,10 @@ + MainWnd - + VBA-M @@ -87,10 +88,15 @@ OpenGL is NOT available! OpenGL ist NICHT verfügbar! + + + About VBA-M + Über VBA-M + - OpenGL - + About OpenGL + Über OpenGL diff --git a/src/qt/MainWnd.cpp b/src/qt/MainWnd.cpp index 363b5327..79f05dd3 100644 --- a/src/qt/MainWnd.cpp +++ b/src/qt/MainWnd.cpp @@ -70,7 +70,7 @@ bool MainWnd::createDisplay() void MainWnd::showAbout() { - QMessageBox::about( this, tr( "VBA-M" ), + QMessageBox::about( this, tr( "About VBA-M" ), tr( "This program is licensed under terms of the GNU General Public License." ) ); } @@ -112,6 +112,6 @@ void MainWnd::showAboutOpenGL() info = tr( "OpenGL is NOT available!" ); } - QMessageBox *test = new QMessageBox( QMessageBox::NoIcon, tr( "OpenGL" ), info, QMessageBox::NoButton, this ); + QMessageBox *test = new QMessageBox( QMessageBox::NoIcon, tr( "About OpenGL" ), info, QMessageBox::NoButton, this ); test->show(); }