From 754fffac6b13a7109a612b7192bdc7364ae19c32 Mon Sep 17 00:00:00 2001 From: Methodius Date: Tue, 30 Jan 2024 22:55:59 +0900 Subject: [PATCH] typos fixed --- applications/main/nfc/helpers/protocol_support/emv/emv_render.c | 2 +- applications/main/nfc/plugins/supported_cards/emv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/main/nfc/helpers/protocol_support/emv/emv_render.c b/applications/main/nfc/helpers/protocol_support/emv/emv_render.c index c1320a077..bb9c680aa 100644 --- a/applications/main/nfc/helpers/protocol_support/emv/emv_render.c +++ b/applications/main/nfc/helpers/protocol_support/emv/emv_render.c @@ -97,7 +97,7 @@ void nfc_render_emv_application(const EmvApplication* apl, FuriString* str) { static void nfc_render_emv_pin_try_counter(uint8_t counter, FuriString* str) { if(counter == 0xff) return; - furi_string_cat_printf(str, "PIN try left: %d\n", counter); + furi_string_cat_printf(str, "PIN attempts left: %d\n", counter); } void nfc_render_emv_transactions(const EmvApplication* apl, FuriString* str) { diff --git a/applications/main/nfc/plugins/supported_cards/emv.c b/applications/main/nfc/plugins/supported_cards/emv.c index ebcc392c8..a8253edff 100644 --- a/applications/main/nfc/plugins/supported_cards/emv.c +++ b/applications/main/nfc/plugins/supported_cards/emv.c @@ -105,7 +105,7 @@ static bool emv_parse(const NfcDevice* device, FuriString* parsed_data) { furi_string_cat_printf(parsed_data, "Currency: %s\n", furi_string_get_cstr(str)); if(app.pin_try_counter != 0xFF) - furi_string_cat_printf(parsed_data, "PIN try left: %d\n", app.pin_try_counter); + furi_string_cat_printf(parsed_data, "PIN attempts left: %d\n", app.pin_try_counter); parsed = true; } while(false);