From 00fd918661f8362eecb925b80be6e5dec702e2e4 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 12 Mar 2018 16:32:18 +0100 Subject: [PATCH] src/apps/homescreen: change wording for unfinished backup to "interrupted" --- src/apps/homescreen/homescreen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/homescreen/homescreen.py b/src/apps/homescreen/homescreen.py index 2cd959186a..93a8f63f11 100644 --- a/src/apps/homescreen/homescreen.py +++ b/src/apps/homescreen/homescreen.py @@ -24,7 +24,7 @@ def display_homescreen(): if storage.is_initialized() and storage.unfinished_backup(): ui.display.bar(0, 0, ui.WIDTH, 30, ui.RED) - ui.display.text_center(ui.WIDTH // 2, 22, 'BROKEN BACKUP!', ui.BOLD, ui.WHITE, ui.RED) + ui.display.text_center(ui.WIDTH // 2, 22, 'BACKUP INTERRUPTED!', ui.BOLD, ui.WHITE, ui.RED) ui.display.bar(0, 30, ui.WIDTH, ui.HEIGHT - 30, ui.BG) elif storage.is_initialized() and storage.needs_backup(): ui.display.bar(0, 0, ui.WIDTH, 30, ui.YELLOW)