diff --git a/src/util.cpp b/src/util.cpp index 421706c43f..f96a6299f4 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -593,27 +593,44 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : CBaseDlg ( parent ) "

" ); // libraries used by this compilation - txvLibraries->setText ( - tr ( "This app uses the following libraries, resources or code snippets:" ) + "

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

" - "

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

" + txvLibraries->setText ( tr ( "This app uses the following libraries, resources or code snippets:" ) + "

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

" + "

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

" # if defined( _WIN32 ) && !defined( WITH_JACK ) - "

ASIO (Audio Stream I/O) SDK" - ", https://www.steinberg.net/developers
" + - "ASIO is a trademark and software of Steinberg Media Technologies GmbH

" + "

" + "ASIO (Audio Stream I/O) SDK" + ", https://www.steinberg.net/developers" + "
" + "ASIO is a trademark and software of Steinberg Media Technologies GmbH" + "

" # endif - "

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

" - "

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

" - "

" + - tr ( "Flag icons by Mark James" ) + ", http://www.famfamfam.com

" + "

" + - tr ( "Some sound samples are from" ) + " Freesound, " + "https://freesound.org

" ); +# ifndef SERVER_ONLY + "

" + + tr ( "Audio reverberation code by Perry R. Cook and Gary P. Scavone" ) + + ", 1995 - 2021" + ", The Synthesis ToolKit in C++ (STK)" + ", https://ccrma.stanford.edu/software/stk" + "

" +# endif + "

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

" + "

" + + tr ( "Flag icons by Mark James" ) + + ", http://www.famfamfam.com" + "

" + "

" + + tr ( "Some sound samples are from" ) + + " Freesound" + ", https://freesound.org" + "

" ); // contributors list txvContributors->setText ( @@ -1705,10 +1722,11 @@ QString GetVersionAndNameStr ( const bool bDisplayInGui ) strVersionText += "\n *** Foundation; either version 2 of the License, or (at your option) any later version."; strVersionText += "\n *** There is NO WARRANTY, to the extent permitted by law."; strVersionText += "\n *** "; - strVersionText += "\n *** Using the following libraries, resources or code snippets:"; + + strVersionText += "\n *** " + QCoreApplication::tr ( "This app uses the following libraries, resources or code snippets:" ); strVersionText += "\n *** "; - strVersionText += QString ( "\n *** Qt framework %1" ).arg ( QT_VERSION_STR ); - strVersionText += "\n *** "; + strVersionText += "\n *** " + QCoreApplication::tr ( "Qt cross-platform application framework" ) + QString ( " %1" ).arg ( QT_VERSION_STR ); + strVersionText += "\n *** "; strVersionText += "\n *** "; strVersionText += "\n *** Opus Interactive Audio Codec"; strVersionText += "\n *** "; @@ -1716,20 +1734,26 @@ QString GetVersionAndNameStr ( const bool bDisplayInGui ) #if defined( _WIN32 ) && !defined( WITH_JACK ) strVersionText += "\n *** ASIO (Audio Stream I/O) SDK"; strVersionText += "\n *** "; + strVersionText += "\n *** ASIO is a trademark and software of Steinberg Media Technologies GmbH"; strVersionText += "\n *** "; #endif - strVersionText += "\n *** Audio reverberation code by Perry R. Cook and Gary P. Scavone"; +#ifndef SERVER_ONLY + strVersionText += "\n *** " + QCoreApplication::tr ( "Audio reverberation code by Perry R. Cook and Gary P. Scavone" ) + + ", 1995 - 2021, The Synthesis ToolKit in C++ (STK)"; strVersionText += "\n *** "; strVersionText += "\n *** "; - strVersionText += "\n *** Some pixmaps are from the Open Clip Art Library (OCAL)"; +#endif +#ifndef HEADLESS + strVersionText += "\n *** " + QCoreApplication::tr ( "Some pixmaps are from the" ) + " Open Clip Art Library (OCAL)"; strVersionText += "\n *** "; strVersionText += "\n *** "; - strVersionText += "\n *** Flag icons by Mark James"; + strVersionText += "\n *** " + QCoreApplication::tr ( "Flag icons by Mark James" ); strVersionText += "\n *** "; strVersionText += "\n *** "; - strVersionText += "\n *** Some sound samples are from Freesound"; + strVersionText += "\n *** " + QCoreApplication::tr ( "Some sound samples are from" ) + " Freesound"; strVersionText += "\n *** "; strVersionText += "\n *** "; +#endif strVersionText += "\n *** Copyright © 2005-2023 The Jamulus Development Team"; strVersionText += "\n"; }