From 5e4b632f145864a6d83c1c7f6e5e1ead4d9254da Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 27 Jan 2018 17:42:08 +0100 Subject: [PATCH] bootloader: firmware: use "Go to" instead of "Open", because that's what Chrome uses :-/ --- embed/bootloader/bootui.c | 4 ++-- src/apps/homescreen/homescreen.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/embed/bootloader/bootui.c b/embed/bootloader/bootui.c index 784108b9f..9e26cdc42 100644 --- a/embed/bootloader/bootui.c +++ b/embed/bootloader/bootui.c @@ -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); } } diff --git a/src/apps/homescreen/homescreen.py b/src/apps/homescreen/homescreen.py index 6bd23ae32..b514915bb 100644 --- a/src/apps/homescreen/homescreen.py +++ b/src/apps/homescreen/homescreen.py @@ -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'