From efe8a7f06598a3a6d1badcbf223c53ff3f0ed305 Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 28 Dec 2018 17:19:11 +0100 Subject: [PATCH] Improve messages in the Enable PIN dialog and Change PIN dialog. --- src/apps/management/change_pin.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/apps/management/change_pin.py b/src/apps/management/change_pin.py index 71f01ed0c..b85a7e033 100644 --- a/src/apps/management/change_pin.py +++ b/src/apps/management/change_pin.py @@ -44,19 +44,19 @@ def require_confirm_change_pin(ctx, msg): if msg.remove and has_pin: # removing pin text = Text("Remove PIN", ui.ICON_CONFIG) text.normal("Do you really want to") - text.bold("remove current PIN?") + text.bold("disable PIN protection?") return require_confirm(ctx, text) if not msg.remove and has_pin: # changing pin - text = Text("Remove PIN", ui.ICON_CONFIG) + text = Text("Change PIN", ui.ICON_CONFIG) text.normal("Do you really want to") - text.bold("change current PIN?") + text.bold("change the current PIN?") return require_confirm(ctx, text) if not msg.remove and not has_pin: # setting new pin - text = Text("Remove PIN", ui.ICON_CONFIG) + text = Text("Enable PIN", ui.ICON_CONFIG) text.normal("Do you really want to") - text.bold("set new PIN?") + text.bold("enable PIN protection?") return require_confirm(ctx, text)