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(); }