Skip to content

Commit a5d9d25

Browse files
Merge pull request #609 from LedgerHQ/fix/apa/fit_settings_in_page
NBGL settings subtext fix
2 parents a23c6bc + 2f30d11 commit a5d9d25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src_nbgl/ui_home.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,28 +113,28 @@ static void prepare_and_display_home(const char *appname, const char *tagline) {
113113
switches[DOMAIN_NAME_VERBOSE_ID].initState =
114114
N_storage.verbose_domain_name ? ON_STATE : OFF_STATE;
115115
switches[DOMAIN_NAME_VERBOSE_ID].text = "ENS addresses";
116-
switches[DOMAIN_NAME_VERBOSE_ID].subText = "Displays the resolved address of ENS domains.";
116+
switches[DOMAIN_NAME_VERBOSE_ID].subText = "Display the resolved address of ENS domains.";
117117
switches[DOMAIN_NAME_VERBOSE_ID].token = DOMAIN_NAME_VERBOSE_TOKEN;
118118
switches[DOMAIN_NAME_VERBOSE_ID].tuneId = TUNE_TAP_CASUAL;
119119
#endif // HAVE_DOMAIN_NAME
120120

121121
#ifdef HAVE_EIP712_FULL_SUPPORT
122122
switches[EIP712_VERBOSE_ID].initState = N_storage.verbose_eip712 ? ON_STATE : OFF_STATE;
123123
switches[EIP712_VERBOSE_ID].text = "Raw messages";
124-
switches[EIP712_VERBOSE_ID].subText = "Displays raw content from EIP712 messages.";
124+
switches[EIP712_VERBOSE_ID].subText = "Display raw content from EIP712 messages.";
125125
switches[EIP712_VERBOSE_ID].token = EIP712_VERBOSE_TOKEN;
126126
switches[EIP712_VERBOSE_ID].tuneId = TUNE_TAP_CASUAL;
127127
#endif // HAVE_EIP712_FULL_SUPPORT
128128

129129
switches[NONCE_ID].initState = N_storage.displayNonce ? ON_STATE : OFF_STATE;
130130
switches[NONCE_ID].text = "Nonce";
131-
switches[NONCE_ID].subText = "Displays nonce information in transactions.";
131+
switches[NONCE_ID].subText = "Display nonce in transactions.";
132132
switches[NONCE_ID].token = NONCE_TOKEN;
133133
switches[NONCE_ID].tuneId = TUNE_TAP_CASUAL;
134134

135135
switches[DEBUG_ID].initState = N_storage.contractDetails ? ON_STATE : OFF_STATE;
136136
switches[DEBUG_ID].text = "Debug smart contracts";
137-
switches[DEBUG_ID].subText = "Displays contract data details.";
137+
switches[DEBUG_ID].subText = "Display contract data details.";
138138
switches[DEBUG_ID].token = DEBUG_TOKEN;
139139
switches[DEBUG_ID].tuneId = TUNE_TAP_CASUAL;
140140

0 commit comments

Comments
 (0)