From 17dcd941b4f7d6277f5c3fd22c283fe4ec0da278 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sat, 9 May 2020 15:27:07 +0200 Subject: [PATCH] add the names of the contributors in the about dialog --- src/util.cpp | 52 +++++++++++++++++++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index 17f01fc1..9f9dd542 100755 --- a/src/util.cpp +++ b/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:" ) + - "" ); + "

" + tr ( "Qt cross-platform application framework" ) + + ", http://www.qt.io

" + "

Opus Interactive Audio Codec" + ", http://www.opus-codec.org

" + "

" + tr ( "Audio reverberation code by Perry R. Cook and Gary P. Scavone" ) + + ", 1995 - 2004, " + "The Synthesis ToolKit in C++ (STK)

" + "

" + tr ( "Some pixmaps are from the" ) + " Open Clip Art Library (OCAL), " + "http://openclipart.org

" + "

" + tr ( "Country flag icons from Mark James" ) + + ", http://www.famfamfam.com

" ); // contributors list - txvContributors->setText ( "We would like to acknowledge the contributors listed in the " - "Github Contributors list" - "
" ); + txvContributors->setText ( + "

Peter L. Jones (pljones)

" + "

Jonathan (gilgongo)

" + "

Daniele Masato (doloopuntil)

" + "

Simon Tomlinson (sthenos)

" + "

Marc jr. Landolt (braindef)

" + "

Olivier Humbert (trebmuh)

" + "

mirabilos (mirabilos)

" + "

newlaurent62 (newlaurent62)

" + "

Emlyn Bolton (emlynmac)

" + "

Jos van den Oever (vandenoever)

" + "

Tormod Volden (tormodvolden)

" + "

Stanislas Michalak (stanislas-m)

" + "
" + tr ( "For details on the contributions check out the " ) + + "" + tr ( "Github Contributors list" ) + "." ); + + // translators + txvTranslation->setText ( + "

Spanish

" + "

ignotus (ignotus666)

" + "

French

" + "

Olivier Humbert (trebmuh)

" + "

Portuguese

" + "

Snayler (Snayler)

" ); // set version number in about dialog lblVersion->setText ( GetVersionAndNameStr() );