add the names of the contributors in the about dialog
This commit is contained in:
parent
136d99ecf0
commit
17dcd941b4
1 changed files with 35 additions and 17 deletions
52
src/util.cpp
52
src/util.cpp
|
@ -373,25 +373,43 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent )
|
|||
// libraries used by this compilation
|
||||
txvLibraries->setText ( APP_NAME +
|
||||
tr ( " uses the following libraries, resources or code snippets:" ) +
|
||||
"<ul>"
|
||||
"<li>Qt cross-platform application framework: "
|
||||
"<i><a href=""http://www.qt.io"">http://www.qt.io</a></i></li>"
|
||||
"<li>Opus Interactive Audio Codec: "
|
||||
"<i><a href=""http://www.opus-codec.org"">http://www.opus-codec.org</a></i></li>"
|
||||
"<li>Audio reverberation code: by Perry R. Cook and Gary P. Scavone, "
|
||||
"1995 - 2004 (taken from "
|
||||
"<i><a href=""http://ccrma.stanford.edu/software/stk"">"
|
||||
"The Synthesis ToolKit in C++ (STK)</a></i>)</li>"
|
||||
"<li>Some pixmaps are from the Open Clip Art Library (OCAL): "
|
||||
"<i><a href=""http://openclipart.org"">http://openclipart.org</a></i></li>"
|
||||
"<li>Country flag icons from Mark James: "
|
||||
"<i><a href=""http://www.famfamfam.com"">http://www.famfamfam.com</a></i></li>"
|
||||
"</ul>" );
|
||||
"<br><p>" + tr ( "Qt cross-platform application framework" ) +
|
||||
", <i><a href=""http://www.qt.io"">http://www.qt.io</a></i></p>"
|
||||
"<p>Opus Interactive Audio Codec"
|
||||
", <i><a href=""http://www.opus-codec.org"">http://www.opus-codec.org</a></i></p>"
|
||||
"<p>" + tr ( "Audio reverberation code by Perry R. Cook and Gary P. Scavone" ) +
|
||||
", 1995 - 2004, <i><a href=""http://ccrma.stanford.edu/software/stk"">"
|
||||
"The Synthesis ToolKit in C++ (STK)</a></i></p>"
|
||||
"<p>" + tr ( "Some pixmaps are from the" ) + " Open Clip Art Library (OCAL), "
|
||||
"<i><a href=""http://openclipart.org"">http://openclipart.org</a></i></p>"
|
||||
"<p>" + tr ( "Country flag icons from Mark James" ) +
|
||||
", <i><a href=""http://www.famfamfam.com"">http://www.famfamfam.com</a></i></p>" );
|
||||
|
||||
// contributors list
|
||||
txvContributors->setText ( "We would like to acknowledge the contributors listed in the "
|
||||
"<a href=""https://github.com/corrados/jamulus/graphs/contributors"">Github Contributors list</a>"
|
||||
"</center><br>" );
|
||||
txvContributors->setText (
|
||||
"<p>Peter L. Jones (<a href=""https://github.com/pljones"">pljones</a>)</p>"
|
||||
"<p>Jonathan (<a href=""https://github.com/gilgongo"">gilgongo</a>)</p>"
|
||||
"<p>Daniele Masato (<a href=""https://github.com/doloopuntil"">doloopuntil</a>)</p>"
|
||||
"<p>Simon Tomlinson (<a href=""https://github.com/sthenos"">sthenos</a>)</p>"
|
||||
"<p>Marc jr. Landolt (<a href=""https://github.com/braindef"">braindef</a>)</p>"
|
||||
"<p>Olivier Humbert (<a href=""https://github.com/trebmuh"">trebmuh</a>)</p>"
|
||||
"<p>mirabilos (<a href=""https://github.com/mirabilos"">mirabilos</a>)</p>"
|
||||
"<p>newlaurent62 (<a href=""https://github.com/newlaurent62"">newlaurent62</a>)</p>"
|
||||
"<p>Emlyn Bolton (<a href=""https://github.com/emlynmac"">emlynmac</a>)</p>"
|
||||
"<p>Jos van den Oever (<a href=""https://github.com/vandenoever"">vandenoever</a>)</p>"
|
||||
"<p>Tormod Volden (<a href=""https://github.com/tormodvolden"">tormodvolden</a>)</p>"
|
||||
"<p>Stanislas Michalak (<a href=""https://github.com/stanislas-m"">stanislas-m</a>)</p>"
|
||||
"<br>" + tr ( "For details on the contributions check out the " ) +
|
||||
"<a href=""https://github.com/corrados/jamulus/graphs/contributors"">" + tr ( "Github Contributors list" ) + "</a>." );
|
||||
|
||||
// translators
|
||||
txvTranslation->setText (
|
||||
"<p><b>Spanish</b></p>"
|
||||
"<p>ignotus (<a href=""https://github.com/ignotus666"">ignotus666</a>)</p>"
|
||||
"<p><b>French</b></p>"
|
||||
"<p>Olivier Humbert (<a href=""https://github.com/trebmuh"">trebmuh</a>)</p>"
|
||||
"<p><b>Portuguese</b></p>"
|
||||
"<p>Snayler (<a href=""https://github.com/Snayler"">Snayler</a>)</p>" );
|
||||
|
||||
// set version number in about dialog
|
||||
lblVersion->setText ( GetVersionAndNameStr() );
|
||||
|
|
Loading…
Reference in a new issue