Skip to content

Commit 23704ea

Browse files
CopilotHannsek
andauthored
feat(core/bootloader): use "Initiate connection" button label on all Core devices
Changes the bootloader intro screen button label from "INSTALL FIRMWARE"/"INSTALL FW" to "Initiate connection" for T2T1 (Model T), T3T1 (Safe 5), and T3B1 (Safe 3) to match the label already used on T3W1 (Safe 7). Agent-Logs-Url: https://github.com/trezor/trezor-firmware/sessions/2790c750-1c65-4734-8c78-9474a26af323 Co-authored-by: Hannsek <57008159+Hannsek@users.noreply.github.com>
1 parent 4c2d1e4 commit 23704ea

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/embed/rust/src/ui/layout_bolt/bootloader/intro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl<'a> Intro<'a> {
4242
menu: Button::with_icon(Icon::new(MENU32))
4343
.styled(button_bld_menu())
4444
.with_expanded_touch_area(Insets::uniform(13)),
45-
host: Button::with_text("INSTALL FIRMWARE".into()).styled(button_bld()),
45+
host: Button::with_text("Initiate connection".into()).styled(button_bld()),
4646
text: Label::left_aligned(content, TEXT_NORMAL).vertically_centered(),
4747
warn: (!fw_ok).then_some(
4848
Label::new("FIRMWARE CORRUPTED".into(), Alignment::Start, TEXT_WARNING)

core/embed/rust/src/ui/layout_caesar/bootloader/intro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use super::super::{
1717
},
1818
};
1919

20-
const LEFT_BUTTON_TEXT: &str = "INSTALL FW";
20+
const LEFT_BUTTON_TEXT: &str = "Initiate connection";
2121
const RIGHT_BUTTON_TEXT: &str = "MENU";
2222

2323
#[repr(u32)]

core/embed/rust/src/ui/layout_delizia/bootloader/intro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl<'a> Intro<'a> {
4545
.with_expanded_touch_area(Insets::uniform(13)),
4646
),
4747
host: Child::new(
48-
Button::with_text("INSTALL FIRMWARE".into())
48+
Button::with_text("Initiate connection".into())
4949
.styled(button_bld())
5050
.with_text_align(Alignment::Center),
5151
),

0 commit comments

Comments
 (0)