From ed3fbf901cb8c9f94439071b6ee4ab89b37b7796 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 5 Feb 2015 18:59:43 +0100 Subject: [PATCH] passphrase protection -> encryption (in dialog) --- firmware/fsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/fsm.c b/firmware/fsm.c index 115105e..1f88c9d 100644 --- a/firmware/fsm.c +++ b/firmware/fsm.c @@ -456,7 +456,7 @@ void fsm_msgApplySettings(ApplySettings *msg) } } if (msg->has_use_passphrase) { - layoutDialogSwipe(DIALOG_ICON_QUESTION, "Cancel", "Confirm", NULL, "Do you really want to", msg->use_passphrase ? "enable passphrase" : "disable passphrase", "protection?", NULL, NULL, NULL); + layoutDialogSwipe(DIALOG_ICON_QUESTION, "Cancel", "Confirm", NULL, "Do you really want to", msg->use_passphrase ? "enable passphrase" : "disable passphrase", "encryption?", NULL, NULL, NULL); if (!protectButton(ButtonRequestType_ButtonRequest_ProtectCall, false)) { fsm_sendFailure(FailureType_Failure_ActionCancelled, "Apply settings cancelled"); layoutHome();