add the names of the contributors in the about dialog

This commit is contained in:
Volker Fischer 2020-05-09 15:27:07 +02:00
parent 136d99ecf0
commit 17dcd941b4

View File

@ -373,25 +373,43 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent )
// libraries used by this compilation // libraries used by this compilation
txvLibraries->setText ( APP_NAME + txvLibraries->setText ( APP_NAME +
tr ( " uses the following libraries, resources or code snippets:" ) + tr ( " uses the following libraries, resources or code snippets:" ) +
"<ul>" "<br><p>" + tr ( "Qt cross-platform application framework" ) +
"<li>Qt cross-platform application framework: " ", <i><a href=""http://www.qt.io"">http://www.qt.io</a></i></p>"
"<i><a href=""http://www.qt.io"">http://www.qt.io</a></i></li>" "<p>Opus Interactive Audio Codec"
"<li>Opus Interactive Audio Codec: " ", <i><a href=""http://www.opus-codec.org"">http://www.opus-codec.org</a></i></p>"
"<i><a href=""http://www.opus-codec.org"">http://www.opus-codec.org</a></i></li>" "<p>" + tr ( "Audio reverberation code by Perry R. Cook and Gary P. Scavone" ) +
"<li>Audio reverberation code: by Perry R. Cook and Gary P. Scavone, " ", 1995 - 2004, <i><a href=""http://ccrma.stanford.edu/software/stk"">"
"1995 - 2004 (taken from " "The Synthesis ToolKit in C++ (STK)</a></i></p>"
"<i><a href=""http://ccrma.stanford.edu/software/stk"">" "<p>" + tr ( "Some pixmaps are from the" ) + " Open Clip Art Library (OCAL), "
"The Synthesis ToolKit in C++ (STK)</a></i>)</li>" "<i><a href=""http://openclipart.org"">http://openclipart.org</a></i></p>"
"<li>Some pixmaps are from the Open Clip Art Library (OCAL): " "<p>" + tr ( "Country flag icons from Mark James" ) +
"<i><a href=""http://openclipart.org"">http://openclipart.org</a></i></li>" ", <i><a href=""http://www.famfamfam.com"">http://www.famfamfam.com</a></i></p>" );
"<li>Country flag icons from Mark James: "
"<i><a href=""http://www.famfamfam.com"">http://www.famfamfam.com</a></i></li>"
"</ul>" );
// contributors list // contributors list
txvContributors->setText ( "We would like to acknowledge the contributors listed in the " txvContributors->setText (
"<a href=""https://github.com/corrados/jamulus/graphs/contributors"">Github Contributors list</a>" "<p>Peter L. Jones (<a href=""https://github.com/pljones"">pljones</a>)</p>"
"</center><br>" ); "<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 // set version number in about dialog
lblVersion->setText ( GetVersionAndNameStr() ); lblVersion->setText ( GetVersionAndNameStr() );