gui(installer): update template names & descriptions

This commit is contained in:
Michael Mallan 2024-11-01 14:26:17 +00:00
parent 97c9affd9c
commit 8183370f56
No known key found for this signature in database
GPG Key ID: 5177CDCEDB0EABEB
4 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ pub fn custom_template_description(progress: (usize, usize)) -> Element<'static,
"Introduction",
Column::new()
.align_items(Alignment::Start)
.push(h3("Custom wallet"))
.push(h3("Build your own"))
.max_width(800.0)
.push(Container::new(
p1_regular("Through this setup you can choose how many keys you want to use. For security reasons, we suggest you use Hardware Wallets to store them.")

View File

@ -27,7 +27,7 @@ pub fn inheritance_template_description(progress: (usize, usize)) -> Element<'st
"Introduction",
Column::new()
.align_items(Alignment::Start)
.push(h3("Inheritance wallet"))
.push(h3("Simple inheritance wallet"))
.max_width(800.0)
.push(Container::new(
p1_regular("For this Inheritance wallet you will need 2 Keys: Your Primary Key (for yourself) and an Inheritance Key (for your heir). For security reasons, we suggest you use 2 Hardware Wallets to store them.")

View File

@ -47,8 +47,8 @@ pub fn choose_descriptor_template(progress: (usize, usize)) -> Element<'static,
Button::new(
Column::new()
.align_items(Alignment::Start)
.push(h3("Multisig security wallet"))
.push(p2_regular("A secure scheme requiring stricter multiparty signature and recovery.").style(color::GREY_2))
.push(h3("Expanding multisig"))
.push(p2_regular("Two keys required to spend, with an extra key as a backup.").style(color::GREY_2))
.width(Length::Fill)
)
.padding(15)
@ -63,7 +63,7 @@ pub fn choose_descriptor_template(progress: (usize, usize)) -> Element<'static,
Button::new(
Column::new()
.align_items(Alignment::Start)
.push(h3("Custom (choose your own)"))
.push(h3("Build your own"))
.push(p2_regular("Create a custom setup that fits all your needs.").style(color::GREY_2))
.width(Length::Fill)
)

View File

@ -32,7 +32,7 @@ pub fn multisig_security_template_description(
"Introduction",
Column::new()
.align_items(Alignment::Start)
.push(h3("Multisig security wallet"))
.push(h3("Expanding multisig wallet"))
.max_width(800.0)
.push(Container::new(
p1_regular("For this setup you will need 3 keys: two Primary Keys and a Recovery Key. For security reasons, we suggest you use 3 Hardware Wallets to store them.")