From d4222b25c568b2f88a84883bacafb434f8be1660 Mon Sep 17 00:00:00 2001 From: Max-Wilhelm Bruker Date: Mon, 3 Jan 2011 19:12:59 +0100 Subject: [PATCH] about box --- cockatrice/src/tab_server.h | 1 - cockatrice/src/window_main.cpp | 10 +++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/tab_server.h b/cockatrice/src/tab_server.h index 1e883a079..5767f4331 100644 --- a/cockatrice/src/tab_server.h +++ b/cockatrice/src/tab_server.h @@ -5,7 +5,6 @@ #include #include #include "tab.h" -//#include "protocol_datastructures.h" class AbstractClient; class QTextEdit; diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index 26b3ac88b..8074a63ee 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -153,7 +153,15 @@ void MainWindow::actExit() void MainWindow::actAbout() { - QMessageBox::about(this, tr("About Cockatrice"), trUtf8("Cockatrice
Version %1


Authors:
Max-Wilhelm Bruker
Marcus Schütz
Marius van Zundert

Translators:
Spanish: Gocho
Portugese: Milton Gonçalves
").arg(versionString)); + QMessageBox::about(this, tr("About Cockatrice"), QString( + "Cockatrice
" + + tr("Version %1").arg(versionString) + + "


" + tr("Authors:") + "
Max-Wilhelm Bruker
Marcus Schütz

" + + "" + tr("Translators:") + "
" + + tr("Spanish:") + " Víctor Martínez
" + + tr("Portugese:") + " Milton Gonçalves
" + + tr("French:") + " Yannick Hammer
" + )); } void MainWindow::serverTimeout()