We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75d9ec commit ce7455aCopy full SHA for ce7455a
src/bitmessageqt/networkstatus.py
@@ -238,6 +238,13 @@ def runEveryTwoSeconds(self):
238
239
def retranslateUi(self):
240
"""Update widgets' texts which is not taken from ui-file"""
241
+ self.labelTotalConnections.setText(
242
+ _translate(
243
+ "networkstatus", "Total Connections: %1").arg(
244
+ str(self.tableWidgetConnectionCount.rowCount())))
245
self.labelStartupTime.setText(_translate(
246
"networkstatus", "Since startup on %1"
247
).arg(l10n.formatTimestamp(self.startup)))
248
+ self.updateNumberOfMessagesProcessed()
249
+ self.updateNumberOfBroadcastsProcessed()
250
+ self.updateNumberOfPubkeysProcessed()
0 commit comments