diff --git a/src/soundbase.cpp b/src/soundbase.cpp
index f91375183f..b0b2064ee6 100644
--- a/src/soundbase.cpp
+++ b/src/soundbase.cpp
@@ -167,20 +167,18 @@ QString CSoundBase::SetDev ( const QString strDevName )
if ( !vsErrorList.isEmpty() )
{
// create error message with all details
- QString sErrorMessage = "" + QString ( tr ( "No usable %1 audio device found." ) ).arg ( strSystemDriverTechniqueName ) +
- "
" + tr ( "These are all the available drivers with error messages:" ) + "
";
+ QString sErrorMessage = tr ( "No usable %1 audio device found.
" ).arg ( strSystemDriverTechniqueName );
for ( int i = 0; i < lNumDevs; i++ )
{
- sErrorMessage += "- " + GetDeviceName ( i ) + ": " + vsErrorList[i] + "
";
+ sErrorMessage += "" + GetDeviceName ( i ) + ": " + vsErrorList[i] + "
";
}
- sErrorMessage += "
";
#ifdef _WIN32
// to be able to access the ASIO driver setup for changing, e.g., the sample rate, we
// offer the user under Windows that we open the driver setups of all registered
// ASIO drivers
- sErrorMessage += "
" + tr ( "Do you want to open the ASIO driver setup to try changing your configuration to a working state?" );
+ sErrorMessage += "
" + tr ( "You may be able to fix errors in the driver (ASIO) settings. Do you want to open these settings now?" );
if ( QMessageBox::Yes == QMessageBox::information ( nullptr, APP_NAME, sErrorMessage, QMessageBox::Yes | QMessageBox::No ) )
{