1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-13 18:18:08 +00:00

core/slip39: hopefully final version of slip39 texts

This commit is contained in:
Tomas Susanka 2019-06-26 11:11:50 +02:00
parent daa473c34b
commit 2f0a5adac6

View File

@ -86,9 +86,9 @@ async def confirm_backup_again(ctx):
text.bold("to skip the backup?") text.bold("to skip the backup?")
text.br() text.br()
text.br_half() text.br_half()
text.normal("You can backup Trezor") text.normal("You can back up your")
text.br() text.br()
text.normal("anytime later.") text.normal("Trezor once, at any time.")
return await confirm( return await confirm(
ctx, ctx,
text, text,
@ -243,7 +243,7 @@ async def slip39_show_checklist_set_shares(ctx):
checklist = Checklist("Backup checklist", ui.ICON_RESET) checklist = Checklist("Backup checklist", ui.ICON_RESET)
checklist.add("Set number of shares") checklist.add("Set number of shares")
checklist.add("Set threshold") checklist.add("Set threshold")
checklist.add(("Write down and check", "all shares")) checklist.add(("Write down and check", "all recovery shares"))
checklist.select(0) checklist.select(0)
return await confirm( return await confirm(
ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue" ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue"
@ -253,8 +253,8 @@ async def slip39_show_checklist_set_shares(ctx):
async def slip39_show_checklist_set_threshold(ctx, num_of_shares): async def slip39_show_checklist_set_threshold(ctx, num_of_shares):
checklist = Checklist("Backup checklist", ui.ICON_RESET) checklist = Checklist("Backup checklist", ui.ICON_RESET)
checklist.add("Set number of shares") checklist.add("Set number of shares")
checklist.add("Set the threshold") checklist.add("Set threshold")
checklist.add(("Write down and check", "all backup shares")) checklist.add(("Write down and check", "all recovery shares"))
checklist.select(1) checklist.select(1)
return await confirm( return await confirm(
ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue" ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue"
@ -264,8 +264,8 @@ async def slip39_show_checklist_set_threshold(ctx, num_of_shares):
async def slip39_show_checklist_show_shares(ctx, num_of_shares, threshold): async def slip39_show_checklist_show_shares(ctx, num_of_shares, threshold):
checklist = Checklist("Backup checklist", ui.ICON_RESET) checklist = Checklist("Backup checklist", ui.ICON_RESET)
checklist.add("Set number of shares") checklist.add("Set number of shares")
checklist.add("Set the threshold") checklist.add("Set threshold")
checklist.add(("Write down and check", "all backup shares")) checklist.add(("Write down and check", "all recovery shares"))
checklist.select(2) checklist.select(2)
return await confirm( return await confirm(
ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue" ctx, checklist, ButtonRequestType.ResetDevice, cancel=None, confirm="Continue"