better fitting UX message for MK versions

This commit is contained in:
scgbckbone 2026-04-04 09:22:25 +02:00 committed by doc-hex
parent 621523c1a8
commit 00afe533ca
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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