diff options
| author | 2016-04-27 01:56:04 +0100 | |
|---|---|---|
| committer | 2016-04-27 19:01:46 +0100 | |
| commit | 3d9d826b38d18488bd6ae133314a72baf6456514 (patch) | |
| tree | 8467946e46ccd6dbade9b7061b61209a83074792 /src/modules | |
| parent | OptionsWidget_userList: cleanup and add tooltip (diff) | |
| download | KVIrc-3d9d826b38d18488bd6ae133314a72baf6456514.tar.gz KVIrc-3d9d826b38d18488bd6ae133314a72baf6456514.tar.bz2 KVIrc-3d9d826b38d18488bd6ae133314a72baf6456514.zip | |
OptionsWidget_proxy: reword label + add tooltip + fix capitalization
+ reword Use proxy label (wording decided by Pragma)
+ add tooltip with a brief description to Use proxy for all connections label
+ fix tooltip text capitalization For Add / Remove proxy
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/options/OptionsWidget_proxy.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/modules/options/OptionsWidget_proxy.cpp b/src/modules/options/OptionsWidget_proxy.cpp index 8bca4ded6..3e2bf9aac 100644 --- a/src/modules/options/OptionsWidget_proxy.cpp +++ b/src/modules/options/OptionsWidget_proxy.cpp @@ -64,7 +64,12 @@ OptionsWidget_proxy::OptionsWidget_proxy(QWidget * parent) { createLayout(); - m_pUseProxySelector = addBoolSelector(0,0,1,0,__tr2qs_ctx("Use proxy","options"),KviOption_boolUseProxyHost); + m_pUseProxySelector = addBoolSelector(0,0,1,0,__tr2qs_ctx("Use proxy for all connections","options"),KviOption_boolUseProxyHost); + QString szTip = __tr2qs_ctx("When enabled, the selected proxy will be used as the default for all connections.<br>" \ + "An alternative option to define a specific per-server proxy, is also located " \ + "in the advanced server dialog in the connection tab.","options"); + + mergeTip(m_pUseProxySelector,szTip); m_pTreeWidget = new QTreeWidget(this); addWidgetToLayout(m_pTreeWidget,0,1,0,1); @@ -91,14 +96,14 @@ OptionsWidget_proxy::OptionsWidget_proxy(QWidget * parent) tb->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Proxy)))); tb->setAutoRaise(true); connect(tb,SIGNAL(clicked()),this,SLOT(newProxy())); - mergeTip(tb,__tr2qs_ctx("New Proxy","options")); + mergeTip(tb,__tr2qs_ctx("New proxy","options")); tb = new QToolButton(vbox); tb->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Remove)))); //tb->setEnabled(false); tb->setAutoRaise(true); connect(tb,SIGNAL(clicked()),this,SLOT(removeCurrent())); - mergeTip(tb,__tr2qs_ctx("Remove Proxy","options")); + mergeTip(tb,__tr2qs_ctx("Remove proxy","options")); QFrame * lll = new QFrame(vbox); vbox->setStretchFactor(lll,100); |
