diff --git a/gui/src/installer/view/editor/template/custom.rs b/gui/src/installer/view/editor/template/custom.rs index f7a2a439..1ef401d3 100644 --- a/gui/src/installer/view/editor/template/custom.rs +++ b/gui/src/installer/view/editor/template/custom.rs @@ -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.") diff --git a/gui/src/installer/view/editor/template/inheritance.rs b/gui/src/installer/view/editor/template/inheritance.rs index 4716643f..5416ed3e 100644 --- a/gui/src/installer/view/editor/template/inheritance.rs +++ b/gui/src/installer/view/editor/template/inheritance.rs @@ -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.") diff --git a/gui/src/installer/view/editor/template/mod.rs b/gui/src/installer/view/editor/template/mod.rs index 66859aac..a76dde9b 100644 --- a/gui/src/installer/view/editor/template/mod.rs +++ b/gui/src/installer/view/editor/template/mod.rs @@ -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) ) diff --git a/gui/src/installer/view/editor/template/multisig_security_wallet.rs b/gui/src/installer/view/editor/template/multisig_security_wallet.rs index 18576085..432634c9 100644 --- a/gui/src/installer/view/editor/template/multisig_security_wallet.rs +++ b/gui/src/installer/view/editor/template/multisig_security_wallet.rs @@ -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.")