Skip to content

Commit 89f3301

Browse files
Hannsekclaude
authored andcommitted
feat(core): use "Initiate connection" bootloader label on T2T1, T3B1, T3T1
Replaces the outdated "INSTALL FIRMWARE" / "INSTALL FW" button label on the bootloader intro screen with one that accurately describes what the button does — initiating the USB/host connection. T3W1 (Safe 7) already used "Initiate connection"; this aligns all other Core devices with that wording. T3B1 (Safe 3) uses a shortened "Init connection" to fit the 128×64 pixel display. Closes #6824 Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent 14c6e43 commit 89f3301

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 = "Init 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)