Skip to content

Commit 6fb3965

Browse files
committed
refactor: Remove no-op bilingual string construction
Noticed by stickies-v #31061 (comment) This change makes it easier to update the Untranslated() definition in that PR.
1 parent 199916e commit 6fb3965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/walletcontroller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ void RestoreWalletActivity::finish()
431431
QMessageBox::warning(m_parent_widget, tr("Restore wallet warning"), QString::fromStdString(Join(m_warning_message, Untranslated("\n")).translated));
432432
} else {
433433
//: Title of message box which is displayed when the wallet is successfully restored.
434-
QMessageBox::information(m_parent_widget, tr("Restore wallet message"), QString::fromStdString(Untranslated("Wallet restored successfully \n").translated));
434+
QMessageBox::information(m_parent_widget, tr("Restore wallet message"), "Wallet restored successfully \n");
435435
}
436436

437437
if (m_wallet_model) Q_EMIT restored(m_wallet_model);

0 commit comments

Comments
 (0)