Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
d4222b25
Commit
d4222b25
authored
Jan 03, 2011
by
Max-Wilhelm Bruker
Browse files
about box
parent
78d81ae6
Changes
2
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/tab_server.h
View file @
d4222b25
...
...
@@ -5,7 +5,6 @@
#include
<QTreeWidget>
#include
<QTextBrowser>
#include
"tab.h"
//#include "protocol_datastructures.h"
class
AbstractClient
;
class
QTextEdit
;
...
...
cockatrice/src/window_main.cpp
View file @
d4222b25
...
...
@@ -153,7 +153,15 @@ void MainWindow::actExit()
void
MainWindow
::
actAbout
()
{
QMessageBox
::
about
(
this
,
tr
(
"About Cockatrice"
),
trUtf8
(
"<font size=
\"
8
\"
><b>Cockatrice</b></font><br>Version %1<br><br><br><b>Authors:</b><br>Max-Wilhelm Bruker<br>Marcus Schütz<br>Marius van Zundert<br><br><b>Translators:</b><br>Spanish: Gocho<br>Portugese: Milton Gonçalves<br>"
).
arg
(
versionString
));
QMessageBox
::
about
(
this
,
tr
(
"About Cockatrice"
),
QString
(
"<font size=
\"
8
\"
><b>Cockatrice</b></font><br>"
+
tr
(
"Version %1"
).
arg
(
versionString
)
+
"<br><br><br><b>"
+
tr
(
"Authors:"
)
+
"</b><br>Max-Wilhelm Bruker<br>Marcus Schütz<br><br>"
+
"<b>"
+
tr
(
"Translators:"
)
+
"</b><br>"
+
tr
(
"Spanish:"
)
+
" Víctor Martínez<br>"
+
tr
(
"Portugese:"
)
+
" Milton Gonçalves<br>"
+
tr
(
"French:"
)
+
" Yannick Hammer<br>"
));
}
void
MainWindow
::
serverTimeout
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment