Merge pull request #1420 from pedro-nonfree/rename-friend-to-trusted-node-statusbar

substitute friend to trusted node in statusbar
This commit is contained in:
csoler 2018-11-27 08:16:59 +01:00 committed by GitHub
commit bac6eb05b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -41,8 +41,8 @@ DHTStatus::DHTStatus(QWidget *parent)
statusDHT = new QLabel("<strong>" + tr("DHT") + ":</strong>", this );
statusDHT->setToolTip(tr("<p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not \"store\" your IP in the DHT. \
Instead the DHT is used by your friends to reach you while processing standard DHT requests. \
The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p>")) ;
Instead the DHT is used by your trusted nodes to reach you while processing standard DHT requests. \
The status bullet will turn green as soon as Retroshare gets a DHT response from one of your trusted nodes.</p>")) ;
hbox->addWidget(statusDHT);
dhtstatusLabel = new QLabel( this );

View File

@ -37,7 +37,7 @@ PeerStatus::PeerStatus(QWidget *parent)
iconLabel->setPixmap(QPixmap(":/icons/avatar_grey_128.png").scaledToHeight(S,Qt::SmoothTransformation));
hbox->addWidget(iconLabel);
statusPeers = new QLabel( tr("Friends: 0/0"), this );
statusPeers = new QLabel( tr("Trusted nodes: 0/0"), this );
hbox->addWidget(statusPeers);
_compactMode = false;
@ -51,10 +51,10 @@ void PeerStatus::getPeerStatus(unsigned int nFriendCount, unsigned int nOnlineCo
/* set users/friends/network */
if (statusPeers){
statusPeers->setToolTip(tr("Online Friends/Total Friends") );
statusPeers->setToolTip(tr("Online Trusted nodes/Total trusted nodes") );
QString text;
if (_compactMode) text = QString("%1/%2").arg(nOnlineCount).arg(nFriendCount);
else text = QString("<strong>%1:</strong> %2/%3 ").arg(tr("Friends")).arg(nOnlineCount).arg(nFriendCount);
else text = QString("<strong>%1:</strong> %2/%3 ").arg(tr("Trusted nodes")).arg(nOnlineCount).arg(nFriendCount);
statusPeers -> setText(text);
}
int S = QFontMetricsF(iconLabel->font()).height();

View File

@ -42,7 +42,7 @@ TorStatus::TorStatus(QWidget *parent)
hbox->setSpacing(6);
statusTor = new QLabel("<strong>" + tr("Tor") + ":</strong>", this );
statusTor->setToolTip(tr("<p>This version of Retroshare uses Tor to connect to your friends.</p>")) ;
statusTor->setToolTip(tr("<p>This version of Retroshare uses Tor to connect to your trusted nodes.</p>")) ;
hbox->addWidget(statusTor);
torstatusLabel = new QLabel( this );