Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): Updated text acc to suggestion #419

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/constant_texts.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ const char *ui_text_operation_has_been_cancelled =
"Operation has been cancelled!";
const char *ui_text_wallet_name_exists =
"Name already exists Pick a different name";
const char *ui_text_pin_incorrect_re_enter =
"Incorrect PIN!\nEnter correct pin";
const char *ui_text_pin_incorrect_re_enter = "Wrong PIN!\nEnter correct pin";
const char *ui_text_wallet_with_same_mnemo_exists =
"Wallet already present on device";
const char *ui_text_incorrect_mnemonics = "Incorrect mnemonics";
Expand Down
2 changes: 1 addition & 1 deletion src/constant_texts.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#define UI_TEXT_WALLET_UNLOCKED "Correct PIN! %s is now unlocked"
#define UI_TEXT_UNLOCK_WARNING "Multiple incorrect attempts may block %s"
#define UI_TEXT_INCORRECT_PIN_ATTEMPTS_REMAINING \
"Incorrect PIN!\n%d attempt(s) remaining"
"Wrong PIN!\n%d attempt(s) remaining"
#define UI_TEXT_BLIND_SIGNING_WARNING \
LV_SYMBOL_WARNING " Blind Signing\nProceed at your own risk!"
#define UI_TEXT_VERIFY_HD_PATH "Verify Derivation Path"
Expand Down