What changed, and why it matters
This commit only changes a single button label from 'Select diff seed' to 'Select different seed' and adds a non-code TODO comment about future localization work. There is no security relevance.
No security action needed. This is a routine UI wording and code-comment change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two files: (1) src/seedsigner/gui/components.py adds a TODO comment suggesting a get_label_font_size() method for localization (l10n); (2) src/seedsigner/views/psbt_views.py changes the text of the SELECT_DIFF_SEED ButtonOption from ‘Select diff seed’ to ‘Select different seed’. No functional, cryptographic, or security logic is changed.
Changed components
src/seedsigner/gui/components.pysrc/seedsigner/views/psbt_views.pyInspect captured patch +2 / −1
diff --git a/src/seedsigner/gui/components.py b/src/seedsigner/gui/components.py
index d9a2e0b..9c6e84c 100644
--- a/src/seedsigner/gui/components.py
+++ b/src/seedsigner/gui/components.py
@@ -85,6 +85,7 @@ class GUIConstants:
FIXED_WIDTH_FONT_NAME = "Inconsolata-Regular"
FIXED_WIDTH_EMPHASIS_FONT_NAME = "Inconsolata-SemiBold"
+ # TODO: this should have a get_label_font_size() method like the others for l10n
LABEL_FONT_SIZE = BODY_FONT_MIN_SIZE
LABEL_FONT_COLOR = "#777777"
diff --git a/src/seedsigner/views/psbt_views.py b/src/seedsigner/views/psbt_views.py
index 58d8b84..a6fad4f 100644
--- a/src/seedsigner/views/psbt_views.py
+++ b/src/seedsigner/views/psbt_views.py
@@ -572,7 +572,7 @@ class PSBTSignedQRDisplayView(View):
class PSBTSigningErrorView(View):
- SELECT_DIFF_SEED = ButtonOption("Select diff seed")
+ SELECT_DIFF_SEED = ButtonOption("Select different seed")
def run(self):
psbt_parser: PSBTParser = self.controller.psbt_parser
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.