Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/clientdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ CClientDlg::CClientDlg ( CClient* pNCliP,
ledDelay->setAccessibleName ( tr ( "Delay status LED indicator" ) );

// buffers LED
QString strLEDBuffers = "<b>" + tr ( "Buffers Status LED" ) + ":</b> " +
tr ( "The buffers status LED shows the current audio/streaming "
QString strLEDBuffers = "<b>" + tr ( "Local Jitter Buffer Status LED" ) + ":</b> " +
tr ( "The local jitter buffer status LED shows the current audio/streaming "
"status. If the light is red, the audio stream is interrupted. "
"This is caused by one of the following problems:" ) +
"<ul>"
Expand All @@ -181,7 +181,7 @@ CClientDlg::CClientDlg ( CClient* pNCliP,
lblBuffers->setWhatsThis ( strLEDBuffers );
ledBuffers->setWhatsThis ( strLEDBuffers );

ledBuffers->setAccessibleName ( tr ( "Buffers status LED indicator" ) );
ledBuffers->setAccessibleName ( tr ( "Local Jitter Buffer status LED indicator" ) );

// current connection status parameter
QString strConnStats = "<b>" +
Expand Down
3 changes: 2 additions & 1 deletion src/clientsettingsdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, CClientSettings* pNSet
cbxCentralServerAddress->setAccessibleName ( tr ( "Directory server address combo box" ) );

// current connection status parameter
QString strConnStats = tr ( "Audio Upstream Rate depends on the current audio packet size and "
QString strConnStats = "<b>" + tr ( "Audio Upstream Rate" ) + ":</b> " +
tr ( "Depends on the current audio packet size and "
"compression setting. Make sure that the upstream rate is not "
"higher than your available internet upload speed (check this with a "
"service such as speedtest.net)." );
Expand Down