bootloader: firmware: use "Go to" instead of "Open", because that's what Chrome uses :-/

pull/25/head
Pavol Rusnak 7 years ago
parent ba8224f598
commit 5e4b632f14
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -102,7 +102,7 @@ void ui_screen_third(void)
{
display_bar(0, 0, DISPLAY_RESX, DISPLAY_RESY, COLOR_WHITE);
display_icon((DISPLAY_RESX - 180) / 2, (DISPLAY_RESY - 30) / 2, 180, 30, toi_icon_welcome + 12, sizeof(toi_icon_welcome) - 12, COLOR_BLACK, COLOR_WHITE);
display_text_center(120, 220, "Open trezor.io/start", -1, FONT_NORMAL, COLOR_BLACK, COLOR_WHITE, 0);
display_text_center(120, 220, "Go to trezor.io/start", -1, FONT_NORMAL, COLOR_BLACK, COLOR_WHITE, 0);
}
// info UI
@ -127,7 +127,7 @@ void ui_screen_info(secbool buttons, const vendor_header * const vhdr, const ima
display_text_center(120, 170, "Connect to host?", -1, FONT_NORMAL, COLOR_BLACK, COLOR_WHITE, 0);
ui_confirm_cancel_buttons();
} else {
display_text_center(120, 220, "Open trezor.io/start", -1, FONT_NORMAL, COLOR_BLACK, COLOR_WHITE, 0);
display_text_center(120, 220, "Go to trezor.io/start", -1, FONT_NORMAL, COLOR_BLACK, COLOR_WHITE, 0);
}
}

@ -21,7 +21,7 @@ async def display_homescreen():
from apps.common import storage
if not storage.is_initialized():
label = 'Open trezor.io/start'
label = 'Go to trezor.io/start'
image = None
else:
label = storage.get_label() or 'My TREZOR'

Loading…
Cancel
Save