diff --git a/src/preferences/options.ui b/src/preferences/options.ui index 899f10080..a90a8e1b4 100644 --- a/src/preferences/options.ui +++ b/src/preferences/options.ui @@ -142,7 +142,7 @@ - Bittorrent + BitTorrent AlignHCenter|AlignVCenter|AlignCenter @@ -1399,8 +1399,8 @@ QGroupBox { 0 0 - 423 - 334 + 524 + 414 @@ -1796,7 +1796,7 @@ QGroupBox { - Bittorrent features + BitTorrent features @@ -1812,7 +1812,7 @@ QGroupBox { } - Enable DHT network (decentralized) + Enable DHT (decentralized network) to find more peers true @@ -1834,7 +1834,7 @@ QGroupBox { } - Use a different port for DHT and Bittorrent + Use a different port for DHT and BitTorrent true @@ -1898,7 +1898,7 @@ QGroupBox { Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - Enable Peer Exchange / PeX (requires restart) + Enable Peer Exchange (PeX) to find more peers true @@ -1911,7 +1911,7 @@ QGroupBox { Look for peers on your local network - Enable Local Peer Discovery + Enable Local Peer Discovery to find more peers true diff --git a/src/qtlibtorrent/qbtsession.cpp b/src/qtlibtorrent/qbtsession.cpp index aeb7bf52b..25c1cfd2d 100644 --- a/src/qtlibtorrent/qbtsession.cpp +++ b/src/qtlibtorrent/qbtsession.cpp @@ -449,7 +449,7 @@ void QBtSession::configureSession() { // * LSD if(pref.isLSDEnabled()) { enableLSD(true); - addConsoleMessage(tr("Local Peer Discovery [ON]"), QString::fromUtf8("blue")); + addConsoleMessage(tr("Local Peer Discovery support [ON]"), QString::fromUtf8("blue")); } else { enableLSD(false); addConsoleMessage(tr("Local Peer Discovery support [OFF]"), QString::fromUtf8("blue")); @@ -1317,13 +1317,13 @@ void QBtSession::enableUPnP(bool b) { void QBtSession::enableLSD(bool b) { if(b) { if(!LSDEnabled) { - qDebug("Enabling LSD"); + qDebug("Enabling Local Peer Discovery"); s->start_lsd(); LSDEnabled = true; } } else { if(LSDEnabled) { - qDebug("Disabling LSD"); + qDebug("Disabling Local Peer Discovery"); s->stop_lsd(); LSDEnabled = false; }