diff --git a/core/src/apps/management/recovery_device/homescreen.py b/core/src/apps/management/recovery_device/homescreen.py index 50c67bc4a0..f8b80a21c6 100644 --- a/core/src/apps/management/recovery_device/homescreen.py +++ b/core/src/apps/management/recovery_device/homescreen.py @@ -65,7 +65,9 @@ async def _continue_recovery_process(ctx: GenericContext) -> Success: if is_first_step: # If we are starting recovery, ask for word count first... # _request_word_count - await layout.homescreen_dialog(ctx, "Select", "Select number of words") + await layout.homescreen_dialog( + ctx, "Select", "Select the number of words in your recovery seed" + ) # ask for the number of words word_count = await layout.request_word_count(ctx, dry_run) # ...and only then show the starting screen with word count. diff --git a/core/src/trezor/ui/layouts/tr/__init__.py b/core/src/trezor/ui/layouts/tr/__init__.py index 68271c55de..82182b2a31 100644 --- a/core/src/trezor/ui/layouts/tr/__init__.py +++ b/core/src/trezor/ui/layouts/tr/__init__.py @@ -529,9 +529,9 @@ async def confirm_reset_device( if show_tutorial: await tutorial(ctx) - to_show = "By continuing you agree to our terms and conditions.\n\nMore info at trezor.io/tos" + to_show = "By continuing you agree to our terms and conditions.\n\nMore info at trezor.io/tos." if not recovery: - to_show += "\n\nUse you backup to recover you wallet." + to_show += "\nUse you backup to recover your wallet." return await _placeholder_confirm( ctx=ctx,