fix some context help texts
This commit is contained in:
parent
9d64e53064
commit
bccf0bd5d2
4 changed files with 15 additions and 12 deletions
|
@ -21,7 +21,6 @@
|
||||||
|
|
||||||
TODO fix .tar.gz Linux release 3.5.3 on Sourceforge (gives compile errors)
|
TODO fix .tar.gz Linux release 3.5.3 on Sourceforge (gives compile errors)
|
||||||
|
|
||||||
TODO fix whats this help for server list selection combo box (in client and server)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -242,7 +242,7 @@ CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent,
|
||||||
edtNewClientLevel->setWhatsThis ( strNewClientLevel );
|
edtNewClientLevel->setWhatsThis ( strNewClientLevel );
|
||||||
edtNewClientLevel->setAccessibleName ( tr ( "New client level edit box" ) );
|
edtNewClientLevel->setAccessibleName ( tr ( "New client level edit box" ) );
|
||||||
|
|
||||||
// central server address
|
// custom central server address
|
||||||
QString strCentrServAddr = "<b>" + tr ( "Custom Central Server Address" ) + ":</b> " +
|
QString strCentrServAddr = "<b>" + tr ( "Custom Central Server Address" ) + ":</b> " +
|
||||||
tr ( "The custom central server address is the IP address or URL of the central "
|
tr ( "The custom central server address is the IP address or URL of the central "
|
||||||
"server at which the server list of the connection dialog is managed. This "
|
"server at which the server list of the connection dialog is managed. This "
|
||||||
|
|
|
@ -84,6 +84,10 @@ CConnectDlg::CConnectDlg ( CClient* pNCliP,
|
||||||
cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_GENRE_JAZZ ) );
|
cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_GENRE_JAZZ ) );
|
||||||
cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_CUSTOM ) );
|
cbxCentServAddrType->addItem ( csCentServAddrTypeToString ( AT_CUSTOM ) );
|
||||||
|
|
||||||
|
cbxCentServAddrType->setWhatsThis ( "<b>" + tr ( "Server List Selection" ) + ":</b> " + tr (
|
||||||
|
"Selects the server list to be shown." ) );
|
||||||
|
cbxCentServAddrType->setAccessibleName ( tr ( "Server list selection combo box" ) );
|
||||||
|
|
||||||
// filter
|
// filter
|
||||||
edtFilter->setWhatsThis ( "<b>" + tr ( "Filter" ) + ":</b> " + tr ( "The server "
|
edtFilter->setWhatsThis ( "<b>" + tr ( "Filter" ) + ":</b> " + tr ( "The server "
|
||||||
"list is filtered by the given text. Note that the filter is case insensitive." ) );
|
"list is filtered by the given text. Note that the filter is case insensitive." ) );
|
||||||
|
|
|
@ -73,22 +73,22 @@ CServerDlg::CServerDlg ( CServer* pNServP,
|
||||||
// register server status label
|
// register server status label
|
||||||
lblRegSvrStatus->setWhatsThis ( "<b>" + tr ( "Register Server Status" ) + ":</b> " +
|
lblRegSvrStatus->setWhatsThis ( "<b>" + tr ( "Register Server Status" ) + ":</b> " +
|
||||||
tr ( "If the Make My Server Public check box is checked, this will show "
|
tr ( "If the Make My Server Public check box is checked, this will show "
|
||||||
"whether registration with the central server is successful." ) );
|
"whether registration with the central server is successful. If the "
|
||||||
|
"registration failed, please choose another server list." ) );
|
||||||
|
|
||||||
// central server address
|
// custom central server address
|
||||||
QString strCentrServAddr = "<b>" + tr ( "Central Server Address" ) + ":</b> " +
|
QString strCentrServAddr = "<b>" + tr ( "Custom Central Server Address" ) + ":</b> " +
|
||||||
tr ( "The Central server address is the IP address or URL of the central server "
|
tr ( "The custom central server address is the IP address or URL of the central "
|
||||||
"at which this server is registered. With the central server address "
|
"server at which the server list of the connection dialog is managed." );
|
||||||
"type either the local region can be selected of the default central "
|
|
||||||
"servers or a manual address can be specified." );
|
|
||||||
|
|
||||||
lblCentralServerAddress->setWhatsThis ( strCentrServAddr );
|
lblCentralServerAddress->setWhatsThis ( strCentrServAddr );
|
||||||
cbxCentServAddrType->setWhatsThis ( strCentrServAddr );
|
|
||||||
edtCentralServerAddress->setWhatsThis ( strCentrServAddr );
|
edtCentralServerAddress->setWhatsThis ( strCentrServAddr );
|
||||||
|
|
||||||
cbxCentServAddrType->setAccessibleName ( tr ( "Default central server type combo box" ) );
|
|
||||||
edtCentralServerAddress->setAccessibleName ( tr ( "Central server address line edit" ) );
|
edtCentralServerAddress->setAccessibleName ( tr ( "Central server address line edit" ) );
|
||||||
|
|
||||||
|
cbxCentServAddrType->setWhatsThis ( "<b>" + tr ( "Server List Selection" ) + ":</b> " + tr (
|
||||||
|
"Selects the server list (i.e. central server address) in which your server will be added." ) );
|
||||||
|
cbxCentServAddrType->setAccessibleName ( tr ( "Server list selection combo box" ) );
|
||||||
|
|
||||||
// server name
|
// server name
|
||||||
QString strServName = "<b>" + tr ( "Server Name" ) + ":</b> " + tr ( "The server name identifies "
|
QString strServName = "<b>" + tr ( "Server Name" ) + ":</b> " + tr ( "The server name identifies "
|
||||||
"your server in the connect dialog server list at the clients. If no "
|
"your server in the connect dialog server list at the clients. If no "
|
||||||
|
|
Loading…
Reference in a new issue