179 | @@ -180,7 +180,10 @@ void OverviewPage::setBalance(const interfaces::WalletBalances& balances)
180 | m_balances = balances;
181 | if (walletModel->wallet().isLegacy()) {
182 | if (walletModel->wallet().privateKeysDisabled()) {
183 | + ui->labelSpendable->setText(QApplication::translate("OverviewPage", "Watch-only:", Q_NULLPTR));
184 | + ui->labelSpendable->setVisible(true);
185 | ui->labelBalance->setText(BitcoinUnits::formatWithPrivacy(unit, balances.watch_only_balance, BitcoinUnits::SeparatorStyle::ALWAYS, m_privacy));
186 | + ui->labelBalance->setToolTip(QApplication::translate("OverviewPage", "Your current balance in watch-only addresses", Q_NULLPTR));
ui->labelBalance->setToolTip(tr("Your current balance in watch-only addresses"));
effect is the the same, but to translate her by tr makes sense since we have that in the object, and fever code is better code ;-)