diff --git a/ChangeLog b/ChangeLog index daa9f297..275bed40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ +3.5.4git TODO server list split on query @@ -12,7 +13,8 @@ TODO show mute state of others -3.5.3git + +3.5.3 (2020-05-15) - correct unregister of headless server and RPP file creation on SIGINT/SIGTERM, coded by pljones (Tickets #130, #168) @@ -43,13 +45,6 @@ TODO show mute state of others - note: Jamulus is no longer compatible to Qt4 - - - - - - - 3.5.2 (2020-04-24) - use audio level meter bars for normal skin diff --git a/Jamulus.pro b/Jamulus.pro index 3d30cab5..55de0330 100755 --- a/Jamulus.pro +++ b/Jamulus.pro @@ -1,4 +1,4 @@ -VERSION = 3.5.3git +VERSION = 3.5.3 # use target name which does not use a captital letter at the beginning contains(CONFIG, "noupcasename") { diff --git a/src/main.cpp b/src/main.cpp index 385b5fef..7dea11ac 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,6 +27,7 @@ #include #include #include +#include #include "global.h" #include "clientdlg.h" #include "serverdlg.h" @@ -554,7 +555,7 @@ int main ( int argc, char** argv ) Q_INIT_RESOURCE(resources); // load translations - QTranslator myappTranslator; + QTranslator myappTranslator, myqtTranslator; if ( bUseGUI && bUseTranslation ) { @@ -562,6 +563,12 @@ int main ( int argc, char** argv ) { pApp->installTranslator ( &myappTranslator ); } + + // allows the Qt messages to be translated in the application + if ( myqtTranslator.load ( QLocale(), "qt", "_", QLibraryInfo::location ( QLibraryInfo::TranslationsPath ) ) ) + { + pApp->installTranslator ( &myqtTranslator ); + } } diff --git a/src/util.cpp b/src/util.cpp index 9d500c18..77a3cbf8 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -399,6 +399,7 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent ) "

Jos van den Oever (vandenoever)

" "

Tormod Volden (tormodvolden)

" "

Stanislas Michalak (stanislas-m)

" + "

JP Cimalando (jpcima)

" "
" + tr ( "For details on the contributions check out the " ) + "" + tr ( "Github Contributors list" ) + "." );