From 370c58929c306ec179210ef0651dcadecb49c55d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 21 May 2018 15:50:53 +0200 Subject: [PATCH] fsm: use passphrase protection instead of passphrase encryption --- firmware/fsm_msg_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/fsm_msg_common.h b/firmware/fsm_msg_common.h index bd1e13c44e..828cd0cedf 100644 --- a/firmware/fsm_msg_common.h +++ b/firmware/fsm_msg_common.h @@ -294,7 +294,7 @@ void fsm_msgApplySettings(ApplySettings *msg) } } if (msg->has_use_passphrase) { - layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Confirm"), NULL, _("Do you really want to"), msg->use_passphrase ? _("enable passphrase") : _("disable passphrase"), _("encryption?"), NULL, NULL, NULL); + layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Confirm"), NULL, _("Do you really want to"), msg->use_passphrase ? _("enable passphrase") : _("disable passphrase"), _("protection?"), NULL, NULL, NULL); if (!protectButton(ButtonRequestType_ButtonRequest_ProtectCall, false)) { fsm_sendFailure(FailureType_Failure_ActionCancelled, NULL); layoutHome();