From 00afe533ca0cc71d201d7eb7b5f9c14eae282239 Mon Sep 17 00:00:00 2001 From: scgbckbone Date: Sat, 4 Apr 2026 09:22:25 +0200 Subject: [PATCH] better fitting UX message for MK versions --- shared/ccc.py | 2 +- testing/test_sssp.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/ccc.py b/shared/ccc.py index e92d1046..160a2cf8 100644 --- a/shared/ccc.py +++ b/shared/ccc.py @@ -1089,7 +1089,7 @@ is locked into a special mode that restricts seed access, backups, settings and First step is to define a new PIN code that is used when you want to bypass or \ disable this feature. ''', - title="Spending Policy") + title="Spending Policy" if version.has_qwerty else "Spend Policy") if ch != 'y': # just a tourist diff --git a/testing/test_sssp.py b/testing/test_sssp.py index e043f30a..9023ace6 100644 --- a/testing/test_sssp.py +++ b/testing/test_sssp.py @@ -35,7 +35,7 @@ def setup_sssp(goto_sssp_menu, pick_menu_item, cap_story, press_select, pass_wor title, story = cap_story() # it is possible that PIN was set beforehand - if title == "Spending Policy": + if title == ("Spending Policy" if is_q1 else "Spend Policy"): assert "stops you from signing transactions unless conditions are met" in story assert "locked into a special mode" in story assert "First step is to define a new PIN" in story