chore(core/bootloader): unify menu items with firmware
What changed, and why it matters
This commit simply renames two on-screen menu buttons in the bootloader user interface: 'Reboot' becomes 'Restart' and 'Power off' becomes 'Turn off'. There is no change to security logic, no bug fix, and no vulnerability addressed.
No security action needed; this is a cosmetic UI wording change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies only string literals in core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rs. The labels for two Button widgets are changed to match the wording used elsewhere in the firmware. No code behavior, authentication, cryptography, or memory-safety logic is altered.
Changed components
core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rsInspect captured patch +2 / −2
diff --git a/core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rs b/core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rs
index 83b1906b..daf77e4e 100644
--- a/core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rs
+++ b/core/embed/rust/src/ui/layout_eckhart/bootloader/bld_menu_screen.rs
@@ -34,10 +34,10 @@ impl BldMenuScreen {
let bluetooth = Button::with_text("Pair new device".into())
.styled(theme::bootloader::button_bld_menu())
.with_text_align(Alignment::Start);
- let reboot = Button::with_text("Reboot".into())
+ let reboot = Button::with_text("Restart".into())
.styled(theme::bootloader::button_bld_menu())
.with_text_align(Alignment::Start);
- let turnoff = Button::with_text("Power off".into())
+ let turnoff = Button::with_text("Turn off".into())
.styled(theme::bootloader::button_bld_menu())
.with_text_align(Alignment::Start);
let reset = Button::with_text("Factory reset".into())
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.