What changed, and why it matters
This is a tiny localization cleanup: the word 'Electrum' (the software's own brand name) is no longer marked for translation in one dropdown menu. It is not a security fix and does not change program behavior in any meaningful way.
No security action needed. Treat as a routine i18n/maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In electrum/gui/qt/seed_dialog.py, the label for the ‘electrum’ seed type was changed from _(‘Electrum’) to ‘Electrum’. This removes the translatable string marker so the brand name stays as-is across all locales. No logic, validation, or cryptographic code was modified.
Changed components
electrum/gui/qt/seed_dialog.pyInspect captured patch +1 / −1
diff --git a/electrum/gui/qt/seed_dialog.py b/electrum/gui/qt/seed_dialog.py
index 3a93363..0b0da25 100644
--- a/electrum/gui/qt/seed_dialog.py
+++ b/electrum/gui/qt/seed_dialog.py
@@ -102,7 +102,7 @@ class SeedWidget(QWidget):
if options:
self.seed_types = [
ChoiceItem(key=stype, label=label) for stype, label in (
- ('electrum', _('Electrum')),
+ ('electrum', 'Electrum'),
('bip39', _('BIP39 seed')),
('slip39', _('SLIP39 seed')),
)
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.