What changed, and why it matters
This commit changes a single user-interface label in the Bitcoin Core wallet program, replacing three separate dots ('...') with a single ellipsis character ('…'). It is a cosmetic translation/string cleanup and has no security relevance.
No security action needed. Treat as a routine UI/translation cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In src/qt/bitcoingui.cpp, the translatable string passed to tr() for the ‘Restore and Migrate Wallet File’ menu action is changed from ‘Restore and Migrate Wallet File…’ to ‘Restore and Migrate Wallet File…’. This is a typographical normalization to follow Qt/user-interface conventions for ellipsis. No code logic, permissions, parsing, or wallet-handling behavior is modified.
Changed components
src/qt/bitcoingui.cppInspect captured patch +1 / −1
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index a426e615..3100a055 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -496,7 +496,7 @@ void BitcoinGUI::createActions()
action->setEnabled(false);
}
m_migrate_wallet_menu->addSeparator();
- QAction* restore_migrate_file_action = m_migrate_wallet_menu->addAction(tr("Restore and Migrate Wallet File..."));
+ QAction* restore_migrate_file_action = m_migrate_wallet_menu->addAction(tr("Restore and Migrate Wallet File…"));
restore_migrate_file_action->setEnabled(true);
connect(restore_migrate_file_action, &QAction::triggered, [this] {
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.