1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-30 17:21:21 +00:00

layout: encode -> encrypt typo

updates #252
This commit is contained in:
Tomas Susanka 2017-11-29 13:39:19 +01:00 committed by Pavol Rusnak
parent cfe8a98c68
commit a82bbbb30d

View File

@ -250,7 +250,7 @@ void layoutCipherKeyValue(bool encrypt, const char *key)
{ {
const char **str = split_message((const uint8_t *)key, strlen(key), 16); const char **str = split_message((const uint8_t *)key, strlen(key), 16);
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Confirm"), layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Confirm"),
encrypt ? _("Encode value of this key?") : _("Decode value of this key?"), encrypt ? _("Encrypt value of this key?") : _("Decrypt value of this key?"),
str[0], str[1], str[2], str[3], NULL, NULL); str[0], str[1], str[2], str[3], NULL, NULL);
} }